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)
| Subtest | Status | Message |
|---|---|---|
| Property text-box-edge has initial 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 inherits | FAIL | assert_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 none | FAIL | assert_true: text-box-trim doesn't seem to be supported in the computed style expected true got false |
| Property text-box-trim does not inherit | FAIL | assert_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>