wpt / css / filter-effects / inheritance.html

Status: FAIL | Duration: 66ms | Subtests: 4/12 | 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 backdrop-filter has initial value nonePASS
Property backdrop-filter does not inheritPASS
Property color-interpolation-filters has initial value linearrgbFAILassert_true: color-interpolation-filters doesn't seem to be supported in the computed style expected true got false
Property color-interpolation-filters inheritsFAILassert_true: color-interpolation-filters doesn't seem to be supported in the computed style expected true got false
Property filter has initial value nonePASS
Property filter does not inheritPASS
Property flood-color has initial value rgb(0, 0, 0)FAILassert_true: flood-color doesn't seem to be supported in the computed style expected true got false
Property flood-color does not inheritFAILassert_true: expected true got false
Property flood-opacity has initial value 1FAILassert_true: flood-opacity doesn't seem to be supported in the computed style expected true got false
Property flood-opacity does not inheritFAILassert_true: expected true got false
Property lighting-color has initial value rgb(255, 255, 255)FAILassert_true: lighting-color doesn't seem to be supported in the computed style expected true got false
Property lighting-color does not inheritFAILassert_true: expected true got false

/css/filter-effects/inheritance.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Inheritance of Filter Effects properties</title>
<link rel="help" href="https://drafts.fxtf.org/filter-effects/#property-index">
<link rel="help" href="https://drafts.fxtf.org/filter-effects-2/#property-index">
<meta name="assert" content="Properties inherit according to the spec.">
<meta name="assert" content="Properties have initial values according to the spec.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/inheritance-testcommon.js"></script>
</head>
<body>
<div id="container">
  <div id="target"></div>
</div>
<script>
assert_not_inherited('backdrop-filter', 'none', 'blur(10px)');
assert_inherited('color-interpolation-filters', 'linearrgb', 'srgb');
assert_not_inherited('filter', 'none', 'blur(10px)');
assert_not_inherited('flood-color', 'rgb(0, 0, 0)', 'rgb(42, 53, 64)');
assert_not_inherited('flood-opacity', '1', '0.5');
assert_not_inherited('lighting-color', 'rgb(255, 255, 255)', 'rgb(42, 53, 64)');
</script>
</body>
</html>