Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 12 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/parsing/grid-template-columns-intrinsic-auto-repeat-computed.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Masonry Layout Test: getComputedStyle().gridTemplateColumns</title>
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<link rel="help" href="https://drafts.csswg.org/css-grid/#resolved-track-list" title="7.2.6. Resolved Value of a Track Listing">
<meta name="assert" content="Checks the resolved value of grid-template-columns on a masonry container.">
<style>
#target {
display: masonry;
width: 1px;
font-size: 1px;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<div id="target"></div>
<script>
test_computed_value("grid-template-columns", "1px repeat(auto-fill, auto) 3px", "1px 0px 3px");
test_computed_value("grid-template-columns", "1px repeat(auto-fit, auto) 3px", "1px 0px 3px");
test_computed_value("grid-template-columns", "1px [a] repeat(auto-fill, min-content max-content) [b] 4px", "1px [a] 0px 0px [b] 4px");
test_computed_value("grid-template-columns", "1px [a] repeat(auto-fit, min-content max-content) [b] 4px", "1px [a] 0px 0px [b] 4px");
test_computed_value("grid-template-columns", "1px [a] repeat(auto-fill, [b] fit-content(200px) [c]) [d] 3px", "1px [a b] 0px [c d] 3px");
test_computed_value("grid-template-columns", "1px [a] repeat(auto-fit, [b] fit-content(200px) [c]) [d] 3px", "1px [a b] 0px [c d] 3px");
test_computed_value("grid-template-columns", "[a] 1px repeat(auto-fill, auto [b] auto) 4px [d]", "[a] 1px 0px [b] 0px 4px [d]");
test_computed_value("grid-template-columns", "[a] 1px repeat(auto-fit, auto [b] auto) 4px [d]", "[a] 1px 0px [b] 0px 4px [d]");
test_computed_value("grid-template-columns", "100% [a] repeat(auto-fill, [b] min-content [c]) [d] 300%", "1px [a b] 0px [c d] 3px");
test_computed_value("grid-template-columns", "100% [a] repeat(auto-fit, [b] min-content [c]) [d] 300%", "1px [a b] 0px [c d] 3px");
test_computed_value("grid-template-columns", "[a] 1em repeat(auto-fill, max-content [b] auto) 4em [d]", "[a] 1px 0px [b] 0px 4px [d]");
test_computed_value("grid-template-columns", "[a] 1em repeat(auto-fit, max-content [b] auto) 4em [d]", "[a] 1px 0px [b] 0px 4px [d]");
</script>