Status: FAIL | Duration: 62ms | Subtests: 0/15 | 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 |
|---|---|---|
| e.style['text-spacing'] = "normal" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "none" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "auto" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "no-autospace" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "trim-start" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "space-all" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "normal normal" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "normal trim-start" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "no-autospace normal" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "no-autospace space-all" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "no-autospace trim-start" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "trim-start normal " should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "normal no-autospace" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "space-all no-autospace" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
| e.style['text-spacing'] = "trim-start no-autospace" should set the property value | FAIL | assert_not_equals: property should be set got disallowed value "" |
/css/css-text/parsing/text-spacing-valid.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Text Module Test: parsing text-spacing with valid values</title> <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-spacing-property"> <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("text-spacing", "normal"); test_valid_value("text-spacing", "none"); test_valid_value("text-spacing", "auto"); // `text-autospace`. test_valid_value("text-spacing", "no-autospace"); // `text-spacing-trim`. test_valid_value("text-spacing", "trim-start"); test_valid_value("text-spacing", "space-all"); // `text-autospace` and `text-spacing-trim`. test_valid_value("text-spacing", "normal normal", "normal"); test_valid_value("text-spacing", "normal trim-start", "trim-start"); test_valid_value("text-spacing", "no-autospace normal", "no-autospace"); test_valid_value("text-spacing", "no-autospace space-all", "none"); test_valid_value("text-spacing", "no-autospace trim-start", "trim-start no-autospace"); // Test the reversed order. test_valid_value("text-spacing", "trim-start normal ", "trim-start"); test_valid_value("text-spacing", "normal no-autospace", "no-autospace"); test_valid_value("text-spacing", "space-all no-autospace", "none"); test_valid_value("text-spacing", "trim-start no-autospace", "trim-start no-autospace"); </script> </body> </html>