wpt / css / css-logical / parsing / max-block-size-valid.html

Status: PASS | Duration: 51ms | Subtests: 6/6 | 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['max-block-size'] = "none" should set the property valuePASS
e.style['max-block-size'] = "10px" should set the property valuePASS
e.style['max-block-size'] = "20%" should set the property valuePASS
e.style['max-block-size'] = "calc(2em + 3ex)" should set the property valuePASS
e.style['max-block-size'] = "min-content" should set the property valuePASS
e.style['max-block-size'] = "max-content" should set the property valuePASS

/css/css-logical/parsing/max-block-size-valid.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Logical Properties and Values: parsing max-block-size with valid values</title>
<link rel="help" href="https://drafts.csswg.org/css-logical-1/#dimension-properties">
<meta name="assert" content="max-block-size supports the full grammar 'none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)'.">
<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("max-block-size", "none");

test_valid_value("max-block-size", "10px");
test_valid_value("max-block-size", "20%");
test_valid_value("max-block-size", "calc(2em + 3ex)");

test_valid_value("max-block-size", "min-content");
test_valid_value("max-block-size", "max-content");

// The following are not yet supported by browsers:
// test_valid_value("max-block-size", "fit-content(100px)");
// test_valid_value("max-block-size", "fit-content(calc(10% + 10px))");
</script>
</body>
</html>