Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/parsing/grid-row-shortest-serialization.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com">
<meta name="assert" content="grid-row computed value should be the shortest serialization possible"/>
<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("grid-row", "auto / auto", "auto");
test_computed_value("grid-row", "auto", "auto");
test_computed_value("grid-row", "10 / auto", "10");
test_computed_value("grid-row", "10");
test_computed_value("grid-row", "-10 / auto", "-10");
test_computed_value("grid-row", "-10");
test_computed_value("grid-row", "span 2 / auto", "span 2");
test_computed_value("grid-row", "span 2");
test_computed_value("grid-row", "3 last / auto", "3 last");
test_computed_value("grid-row", "3 last");
test_computed_value("grid-row", "span first / auto", "span first");
test_computed_value("grid-row", "span first");
test_computed_value("grid-row", "span 2 first / auto", "span 2 first");
test_computed_value("grid-row", "span 2 first");
test_computed_value("grid-row", "last / last", "last");
</script>
</body>
</html>