wpt / css / css-cascade / parsing / all-invalid.html

Status: PASS | Duration: 52ms | Subtests: 7/7 | 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
e.style['all'] = "auto" should not set the property valuePASS
e.style['all'] = "none" should not set the property valuePASS
e.style['all'] = "filter" should not set the property valuePASS
e.style['all'] = "unset inherit" should not set the property valuePASS
e.style['all'] = "inherit initial" should not set the property valuePASS
e.style['all'] = "initial unset" should not set the property valuePASS
e.style['all'] = "opacity transform" should not set the property valuePASS

/css/css-cascade/parsing/all-invalid.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Cascading and Inheritance Level 3: parsing all with invalid values</title>
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-cascade-3/#propdef-all">
<meta name="assert" content="all supports only the grammar 'initial | inherit | unset'.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_invalid_value("all", "auto");
test_invalid_value("all", "none");
test_invalid_value("all", "filter");
test_invalid_value("all", "unset inherit");
test_invalid_value("all", "inherit initial");
test_invalid_value("all", "initial unset");
test_invalid_value("all", "opacity transform");
</script>
</body>
</html>