Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 4 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-rhythm/parsing/block-step-align-computed.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>CSS Rhythm: block-step-align computed values</title>
<meta name="assert" content="Checking computed values for block-step-align">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
</head>
<body>
<div id="target"></div>
<script>
test_computed_value("block-step-align", "auto");
test_computed_value("block-step-align", "center");
test_computed_value("block-step-align", "start");
test_computed_value("block-step-align", "end");
</script>
</body>
</html>