Status: FAIL | Duration: 63ms | Subtests: 10/18 | 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 block-ellipsis has initial value no-ellipsis | FAIL | assert_true: block-ellipsis doesn't seem to be supported in the computed style expected true got false |
| Property block-ellipsis inherits | FAIL | assert_true: block-ellipsis doesn't seem to be supported in the computed style expected true got false |
| Property continue has initial value normal | FAIL | assert_true: continue doesn't seem to be supported in the computed style expected true got false |
| Property continue does not inherit | FAIL | assert_true: expected true got false |
| Property max-lines has initial value auto | FAIL | assert_true: max-lines doesn't seem to be supported in the computed style expected true got false |
| Property max-lines does not inherit | FAIL | assert_true: expected true got false |
| Property overflow-block has initial value visible | PASS | |
| Property overflow-block does not inherit | PASS | |
| Property overflow-inline has initial value visible | PASS | |
| Property overflow-inline does not inherit | PASS | |
| Property overflow-x has initial value visible | PASS | |
| Property overflow-x does not inherit | PASS | |
| Property overflow-y has initial value visible | PASS | |
| Property overflow-y does not inherit | PASS | |
| Property text-overflow has initial value clip | PASS | |
| Property text-overflow does not inherit | PASS | |
| Property scrollbar-gutter has initial value auto | FAIL | assert_true: scrollbar-gutter doesn't seem to be supported in the computed style expected true got false |
| Property scrollbar-gutter does not inherit | FAIL | assert_true: expected true got false |
/css/css-overflow/inheritance.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Inheritance of CSS Overflow properties</title> <link rel="help" href="https://drafts.csswg.org/css-overflow/#property-index"> <meta name="assert" content="Properties inherit or not according to the spec."> <meta name="assert" content="Properties have initial values according to the spec."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/inheritance-testcommon.js"></script> </head> <body> <div id="container"> <div id="target"></div> </div> <script> assert_inherited('block-ellipsis', 'no-ellipsis', 'ellipsis'); assert_not_inherited('continue', 'normal', 'collapse'); assert_not_inherited('max-lines', 'auto', '2'); assert_not_inherited('overflow-block', 'visible', 'scroll'); assert_not_inherited('overflow-inline', 'visible', 'scroll'); assert_not_inherited('overflow-x', 'visible', 'scroll'); assert_not_inherited('overflow-y', 'visible', 'scroll'); assert_not_inherited('text-overflow', 'clip', 'ellipsis'); assert_not_inherited('scrollbar-gutter', 'auto', 'stable'); </script> </body> </html>