wpt / css / css-transforms / parsing / transform-box-valid.html

Status: FAIL | Duration: 63ms | Subtests: 0/5 | Open test on wpt.live | wpt.fyi

Data from commit:
7727414 ci: report WPT subtest changes in the PR description (#826) (2026-09-02)

SubtestStatusMessage
e.style['transform-box'] = "content-box" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['transform-box'] = "border-box" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['transform-box'] = "fill-box" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['transform-box'] = "stroke-box" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['transform-box'] = "view-box" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""

/css/css-transforms/parsing/transform-box-valid.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Transform Module Level 1: parsing transform-box with valid values</title>
<link rel="help" href="https://drafts.csswg.org/css-transforms/#transform-box-property">
<meta name="assert" content="transform-box supports the full grammar 'content-box | border-box | fill-box | stroke-box | view-box'.">
<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("transform-box", "content-box");
test_valid_value("transform-box", "border-box");
test_valid_value("transform-box", "fill-box");
test_valid_value("transform-box", "stroke-box");
test_valid_value("transform-box", "view-box");
</script>
</body>
</html>