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

Status: FAIL | Duration: 68ms | 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
e.style['text-box-edge'] = "auto" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "text" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ideographic" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ideographic-ink" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "cap" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ex" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "alphabetic" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "text text" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "text ideographic" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "text ideographic-ink" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "cap alphabetic" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "cap ideographic" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "cap ideographic-ink" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ex alphabetic" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ex ideographic" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ex ideographic-ink" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ideographic text" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ideographic alphabetic" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ideographic ideographic" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ideographic ideographic-ink" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ideographic-ink text" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ideographic-ink alphabetic" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ideographic-ink ideographic" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ideographic-ink ideographic-ink" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "cap text" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "ex text" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['text-box-edge'] = "text alphabetic" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""

/css/css-inline/text-box-trim/parsing/text-box-edge-valid.html

<!DOCTYPE html>
<title>text-box-edge parses valid values according to its grammar</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/parsing-testcommon.js"></script>
<script src="values.js"></script>

<script>
for (let value of text_box_edge_values) {
  if (Array.isArray(value)) {
    test_valid_value('text-box-edge', ...value);
  } else {
    test_valid_value('text-box-edge', value);
  }
}
</script>