wpt / css / css-overflow / parsing / block-ellipsis-valid.html

Status: FAIL | Duration: 53ms | Subtests: 0/3 | 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['block-ellipsis'] = "no-ellipsis" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['block-ellipsis'] = "ellipsis" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['block-ellipsis'] = "\" etc., etc. \"" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""

/css/css-overflow/parsing/block-ellipsis-valid.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Overflow: parsing block-ellipsis with valid values</title>
<link rel="help" href="https://drafts.csswg.org/css-overflow/#propdef-block-ellipsis">
<meta name="assert" content="block-ellipsis supports the full grammar 'no-ellipsis | ellipsis | <string>'.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_valid_value("block-ellipsis", 'no-ellipsis');
test_valid_value("block-ellipsis", 'ellipsis');
test_valid_value("block-ellipsis", '" etc., etc. "');
</script>
</body>
</html>