Status: FAIL | Duration: 52ms | Subtests: 0/4 | Open test on wpt.live | wpt.fyi
Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)
| Subtest | Status | Message |
|---|---|---|
| Property text-box-trim value 'none' | FAIL | assert_true: text-box-trim doesn't seem to be supported in the computed style expected true got false |
| Property text-box-trim value 'trim-start' | FAIL | assert_true: text-box-trim doesn't seem to be supported in the computed style expected true got false |
| Property text-box-trim value 'trim-end' | FAIL | assert_true: text-box-trim doesn't seem to be supported in the computed style expected true got false |
| Property text-box-trim value 'trim-both' | FAIL | assert_true: text-box-trim doesn't seem to be supported in the computed style expected true got false |
/css/css-inline/text-box-trim/parsing/text-box-trim-computed.html
<!DOCTYPE html> <title>text-box getComputedStyle() returns correctly resolved values</title> <link rel="help" href="https://drafts.csswg.org/css-inline-3/#propdef-text-box-trim"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/computed-testcommon.js"></script> <body> <div id="target"></div> <script> test_computed_value('text-box-trim', 'none'); test_computed_value('text-box-trim', 'trim-start'); test_computed_value('text-box-trim', 'trim-end'); test_computed_value('text-box-trim', 'trim-both'); </script> </body>