| Summary: | Update inverted-colors UA Stylesheet | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Luke Warlow <lwarlow> |
| Component: | CSS | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | CC: | webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | Safari 17 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
Pull request: https://github.com/WebKit/WebKit/pull/16011 Committed 266234@main (87011db312c8): <https://commits.webkit.org/266234@main> Reviewed commits have been landed. Closing PR #16011 and removing active labels. |
WebKit has an outdated version of the UA stylesheet for inverted-colors Current: ` @media (inverted-colors) { img, picture, video { filter: invert(100%); } /* Images and videos double-inverted. */ } ` Spec: ` @media (inverted-colors) { img:not(picture>img), picture, video { filter: invert(100%); } } `