wpt / css / css-inline / text-box-trim / parsing / inheritance.html

Status: FAIL | Duration: 48ms | Subtests: 0/4 | 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 has initial value autoFAILassert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false
Property text-box-edge inheritsFAILassert_true: text-box-edge doesn't seem to be supported in the computed style expected true got false
Property text-box-trim has initial value noneFAILassert_true: text-box-trim doesn't seem to be supported in the computed style expected true got false
Property text-box-trim does not inheritFAILassert_true: expected true got false

/css/css-inline/text-box-trim/parsing/inheritance.html

<!DOCTYPE html>
<title>Inheritance of CSS Inline Layout Text Edge properties</title>
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-box-edge">
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-box-trim">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/inheritance-testcommon.js"></script>
<div id="container">
  <div id="target"></div>
</div>
<script>
assert_inherited('text-box-edge', 'auto', 'cap alphabetic');
assert_not_inherited('text-box-trim', 'none', 'trim-start');
</script>