wpt / css / css-forced-color-adjust / inheritance.html

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)

SubtestStatusMessage
Property forced-color-adjust has initial value autoPASS
Property forced-color-adjust inheritsPASS

/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>