wpt / css / css-inline / text-box-trim / parsing / text-box-edge-computed.html

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)

SubtestStatusMessage
Property text-box-edge value 'auto'FAILassert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false
Property text-box-edge value 'text'FAILassert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false
Property text-box-edge value 'ideographic'FAILassert_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'FAILassert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false
Property text-box-edge value 'cap'FAILassert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false
Property text-box-edge value 'ex'FAILassert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false
Property text-box-edge value 'alphabetic'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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'FAILassert_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>