https://webkit.org/blog/10247/new-webkit-features-in-safari-13-1/
Finally, WebKit includes support for the dynamic-range media query allowing authors to create styles specific to display capabilities.
@media (dynamic-range: standard) {
.example {
/* Styles for displays not capable of HDR. */
color: rgb(255, 0, 0);
}
}
@media (dynamic-range: high) {
.example {
/* Styles for displays capable of HDR. */
color: color(display-p3 1 0 0);
}
}
Spec: https://drafts.csswg.org/mediaqueries-4/#dynamic-range
One could argue this is covered by #1069 as dynamic-range is in Media Queries Level 4. However the spec still seems to shift around and dynamic-range is not yet mentioned in the issue.
https://webkit.org/blog/10247/new-webkit-features-in-safari-13-1/
Spec: https://drafts.csswg.org/mediaqueries-4/#dynamic-range
One could argue this is covered by #1069 as
dynamic-rangeis in Media Queries Level 4. However the spec still seems to shift around anddynamic-rangeis not yet mentioned in the issue.