wpt / css / css-ui / parsing / outline-width-valid.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['outline-width'] = "0" should set the property valuePASS
e.style['outline-width'] = "1px" should set the property valuePASS
e.style['outline-width'] = "2em" should set the property valuePASS
e.style['outline-width'] = "calc(2em + 3ex)" should set the property valuePASS
e.style['outline-width'] = "thin" should set the property valuePASS
e.style['outline-width'] = "medium" should set the property valuePASS
e.style['outline-width'] = "thick" should set the property valuePASS

/css/css-ui/parsing/outline-width-valid.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS UI Level 4: parsing outline-width with valid values</title>
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-ui/#outline-width">
<meta name="assert" content="outline-width supports the full grammar '<border-width>'.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_valid_value("outline-width", "0", "0px");
test_valid_value("outline-width", "1px");
test_valid_value("outline-width", "2em");
test_valid_value("outline-width", "calc(2em + 3ex)");
test_valid_value("outline-width", "thin");
test_valid_value("outline-width", "medium");
test_valid_value("outline-width", "thick");
</script>
</body>
</html>