Status: FAIL | Duration: 67ms | Subtests: 0/27 | 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-edge value 'auto' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'text' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ideographic' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ideographic-ink' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'cap' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ex' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'alphabetic' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'text text' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'text ideographic' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'text ideographic-ink' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'cap alphabetic' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'cap ideographic' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'cap ideographic-ink' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ex alphabetic' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ex ideographic' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ex ideographic-ink' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ideographic text' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ideographic alphabetic' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ideographic ideographic' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ideographic ideographic-ink' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ideographic-ink text' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ideographic-ink alphabetic' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ideographic-ink ideographic' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ideographic-ink ideographic-ink' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'cap text' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'ex text' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
| Property text-box-edge value 'text alphabetic' | FAIL | assert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false |
/css/css-inline/text-box-trim/parsing/text-box-edge-computed.html
<!DOCTYPE html> <title>text-box getComputedStyle() returns correctly resolved values</title> <link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-edges"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/computed-testcommon.js"></script> <script src="values.js"></script> <body> <div id="target"></div> <script> for (let value of text_box_edge_values) { if (Array.isArray(value)) { test_computed_value('text-box-edge', ...value); } else { test_computed_value('text-box-edge', value); } } </script> </body>