wpt / css / css-ui / parsing / resize-computed.html

Status: FAIL | Duration: 67ms | Subtests: 0/6 | 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 resize value 'none'FAILassert_true: resize doesn't seem to be supported in the computed style expected true got false
Property resize value 'both'FAILassert_true: resize doesn't seem to be supported in the computed style expected true got false
Property resize value 'horizontal'FAILassert_true: resize doesn't seem to be supported in the computed style expected true got false
Property resize value 'vertical'FAILassert_true: resize doesn't seem to be supported in the computed style expected true got false
Property resize value 'both' in ::beforeFAILcannot convert 'null' or 'undefined' to object
Property resize value 'vertical' in ::afterFAILcannot convert 'null' or 'undefined' to object

/css/css-ui/parsing/resize-computed.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS UI Level 3: getComputedStyle().resize</title>
<link rel="help" href="https://drafts.csswg.org/css-ui-3/#resize">
<meta name="assert" content="resize 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("resize", "none");
test_computed_value("resize", "both");
test_computed_value("resize", "horizontal");
test_computed_value("resize", "vertical");
test_pseudo_computed_value("::before", "resize", "both");
test_pseudo_computed_value("::after", "resize", "vertical");
</script>
</body>
</html>