wpt / css / css-ui / parsing / outline-style-computed.html

Status: PASS | Duration: 59ms | Subtests: 10/10 | 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 outline-style value 'auto'PASS
Property outline-style value 'none'PASS
Property outline-style value 'dotted'PASS
Property outline-style value 'dashed'PASS
Property outline-style value 'solid'PASS
Property outline-style value 'double'PASS
Property outline-style value 'groove'PASS
Property outline-style value 'ridge'PASS
Property outline-style value 'inset'PASS
Property outline-style value 'outset'PASS

/css/css-ui/parsing/outline-style-computed.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS UI Level 3: getComputedStyle().outlineStyle</title>
<link rel="help" href="https://drafts.csswg.org/css-ui-3/#outline-style">
<meta name="assert" content="outline-style computed value is as specified.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
</head>
<body>
<div id="target"></div>
<script>
test_computed_value("outline-style", "auto");

test_computed_value("outline-style", "none");
test_computed_value("outline-style", "dotted");
test_computed_value("outline-style", "dashed");
test_computed_value("outline-style", "solid");
test_computed_value("outline-style", "double");
test_computed_value("outline-style", "groove");
test_computed_value("outline-style", "ridge");
test_computed_value("outline-style", "inset");
test_computed_value("outline-style", "outset");
</script>
</body>
</html>