Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

coverage of @media rule which has indent is broken in coverage report #36

Open
pirosikick opened this issue Aug 19, 2019 · 0 comments
Open

Comments

@pirosikick
Copy link
Contributor

Coverage of @media rule which has indent(tab or space) is broken in coverage report.

/* example.css */
/* @media without indent */
@media screen {
h1 {
  color: red;
}
}

/* @media with space indent */
@media screen {
  h1 {
    color: blue;
  }
}

/* @media with tab indent */
@media screen {
	h1 {
		color: yellow;
	}
}

A coverage report of the above css shows that a first line in @media which has indent isn't covered.

image

The full example is pushed to the following repository:
https://github.com/pirosikick/puppeteer-coverage-bug-in-media-query

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant