We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm running tests using latest jest and jsdom fails due to "Could not parse CSS stylesheet"
jest: 24.9.0 jsdom: 15.2.1 cssom: 0.4.2
The issue is with inherited media queries which work perfectly in Chrome.
@media (min-width: 768px) { h1 { color: red; } @media (min-resolution: 0.001dpcm) { h1 { color: yellow; } @supports (-webkit-appearance: none) { h1 { color: green; } } } } @media (min-resolution: 0.001dpcm) { a { color: green; } } @supports (-webkit-appearance: none) { p { color: blue; } }
<h1>Hello!</h1> <p> Inherited media queries <a href="#">here</a>. </p>
The text was updated successfully, but these errors were encountered:
Might be related to #103
Sorry, something went wrong.
And also #1 (comment)
I unrolled the regression. Thank you for reporting.
No branches or pull requests
I'm running tests using latest jest and jsdom fails due to "Could not parse CSS stylesheet"
The issue is with inherited media queries which work perfectly in Chrome.
The text was updated successfully, but these errors were encountered: