wpt / css / css-overflow / parsing / continue-valid.html

Status: FAIL | Duration: 54ms | 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
e.style['continue'] = "normal" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['continue'] = "discard" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['continue'] = "collapse" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['continue'] = "-webkit-legacy" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""

/css/css-overflow/parsing/continue-valid.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Overflow: parsing continue with valid values</title>
<link rel="help" href="https://drafts.csswg.org/css-overflow-4/#propdef-continue">
<meta name="assert" content="continue supports the full grammar 'normal | discard | collapse', as well as '-webkit-legacy' for legacy compatibility.">
<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("continue", 'normal');
test_valid_value("continue", 'discard');
test_valid_value("continue", 'collapse');
test_valid_value("continue", '-webkit-legacy');
</script>
</body>
</html>