Status: PASS | Duration: 51ms | Subtests: 2/2 | Open test on wpt.live | wpt.fyi
Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)
| Subtest | Status | Message |
|---|---|---|
| Property forced-color-adjust has initial value auto | PASS | |
| Property forced-color-adjust inherits | PASS |
/css/css-forced-color-adjust/inheritance.html
<!DOCTYPE html> <title>Inheritance of CSS Forced Color Adjust properties</title> <link rel="help" href="https://www.w3.org/TR/css-color-adjust-1/#forced-color-adjust-prop"> <meta name="assert" content="Properties inherit according to the spec."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/inheritance-testcommon.js"></script> <div id="container"> <div id="target"></div> </div> <script> assert_inherited('forced-color-adjust', 'auto', 'none'); </script>