Status: FAIL | Duration: 59ms | Subtests: 0/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)
| Subtest | Status | Message |
|---|---|---|
| Property text-spacing-trim value 'auto' | FAIL | assert_true: text-spacing-trim doesn't seem to be supported in the computed style expected true got false |
| Property text-spacing-trim value 'normal' | FAIL | assert_true: text-spacing-trim doesn't seem to be supported in the computed style expected true got false |
| Property text-spacing-trim value 'space-all' | FAIL | assert_true: text-spacing-trim doesn't seem to be supported in the computed style expected true got false |
| Property text-spacing-trim value 'trim-both' | FAIL | assert_true: text-spacing-trim doesn't seem to be supported in the computed style expected true got false |
| Property text-spacing-trim value 'trim-all' | FAIL | assert_true: text-spacing-trim doesn't seem to be supported in the computed style expected true got false |
| Property text-spacing-trim value 'trim-start' | FAIL | assert_true: text-spacing-trim doesn't seem to be supported in the computed style expected true got false |
| Property text-spacing-trim value 'space-first' | FAIL | assert_true: text-spacing-trim doesn't seem to be supported in the computed style expected true got false |
/css/css-text/parsing/text-spacing-trim-computed.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Text: getComputedStyle().textSpacingTrim</title> <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-spacing-trim-property"> <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("text-spacing-trim", "auto"); test_computed_value("text-spacing-trim", "normal"); test_computed_value("text-spacing-trim", "space-all"); test_computed_value("text-spacing-trim", "trim-both"); test_computed_value("text-spacing-trim", "trim-all"); test_computed_value("text-spacing-trim", "trim-start"); test_computed_value("text-spacing-trim", "space-first"); </script> </body> </html>