css-shapes-polyfill
css-shapes-polyfill copied to clipboard
Does not work when shape-rules are nested in @media queries
Example:
@media (max-width: 767px) {
.wrap {
shape-outside: url(...);
}
}
Expected: The polyfill will respect the media-query and re-calculate the shape when the media-query is in use.
Actual: Error attempting to run querySelectorAll
on @media ...
: shapes-polyfill.js#L1379
@betravis Is this use case currently handled by the polyfill?
Any update on this issue?