blob: 75b5c6f54973ef162cfb67f775f68f9958ede259 [file] [log] [blame]
<!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>