Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-rhythm/parsing/block-step-align-invalid.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>CSS Rhythm: block-step-align invalid values</title>
<meta name="assert" content="Invalid values for block-step-align should not be parsed">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_invalid_value("block-step-align", "auto auto");
test_invalid_value("block-step-align", "start end");
test_invalid_value("block-step-align", "center start");
test_invalid_value("block-step-align", "end auto");
test_invalid_value("block-step-align", "-1px");
test_invalid_value("block-step-align", "min-content");
test_invalid_value("block-step-align", "10%");
test_invalid_value("block-step-align", "20");
test_invalid_value("block-step-align", "none");
test_invalid_value("block-step-align", "border-box");
test_invalid_value('block-step-align', "margin");
test_invalid_value("block-step-align", "padding")
test_invalid_value("block-step-align", "content")
</script>
</body>
</html>