wpt / css / css-overflow / inheritance.html

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)

SubtestStatusMessage
Property block-ellipsis has initial value no-ellipsisFAILassert_true: block-ellipsis doesn't seem to be supported in the computed style expected true got false
Property block-ellipsis inheritsFAILassert_true: block-ellipsis doesn't seem to be supported in the computed style expected true got false
Property continue has initial value normalFAILassert_true: continue doesn't seem to be supported in the computed style expected true got false
Property continue does not inheritFAILassert_true: expected true got false
Property max-lines has initial value autoFAILassert_true: max-lines doesn't seem to be supported in the computed style expected true got false
Property max-lines does not inheritFAILassert_true: expected true got false
Property overflow-block has initial value visiblePASS
Property overflow-block does not inheritPASS
Property overflow-inline has initial value visiblePASS
Property overflow-inline does not inheritPASS
Property overflow-x has initial value visiblePASS
Property overflow-x does not inheritPASS
Property overflow-y has initial value visiblePASS
Property overflow-y does not inheritPASS
Property text-overflow has initial value clipPASS
Property text-overflow does not inheritPASS
Property scrollbar-gutter has initial value autoFAILassert_true: scrollbar-gutter doesn't seem to be supported in the computed style expected true got false
Property scrollbar-gutter does not inheritFAILassert_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>