mirror of
https://github.com/servo/servo.git
synced 2025-10-16 00:10:23 +01:00
49 lines
3.2 KiB
HTML
49 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Grid Layout Test: getComputedStyle().gridTemplateColumns</title>
|
|
<link rel="author" title="Mozilla" href="https://mozilla.org">
|
|
<link rel="help" href="https://drafts.csswg.org/css-grid-2/#resolved-track-list" "title"="2.3. Resolved Value of a Track Listing">
|
|
<meta name="assert" content="Checks the resolved value of grid-template-columns or grid-template-columns on an element which is not a grid container.">
|
|
<style>
|
|
#target {
|
|
display: block;
|
|
height: 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", "subgrid [a]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] [b]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] [b] [b] [c]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] [b c d] [e f] [e f] [g]");
|
|
test_computed_value("grid-template-columns", "subgrid [a b c] [d] [e f]");
|
|
test_computed_value("grid-template-columns", "subgrid repeat(auto-fill, [c])");
|
|
test_computed_value("grid-template-columns", "subgrid repeat(auto-fill, [c]) [g] [h i]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] repeat(auto-fill, [c]) [g] [h i]");
|
|
test_computed_value("grid-template-columns", "subgrid [a b] repeat(auto-fill, [c]) [g]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] [b] repeat(auto-fill, [c]) [g h]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] [b] repeat(auto-fill, [c])");
|
|
test_computed_value("grid-template-columns", "subgrid repeat(auto-fill, [c d])");
|
|
test_computed_value("grid-template-columns", "subgrid repeat(auto-fill, [c d]) [g] [h i]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] repeat(auto-fill, [c d]) [g] [h i]");
|
|
test_computed_value("grid-template-columns", "subgrid [a b] repeat(auto-fill, [c d]) [g]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] [b] repeat(auto-fill, [c d]) [g h]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] [b] repeat(auto-fill, [c d])");
|
|
test_computed_value("grid-template-columns", "subgrid repeat(auto-fill, [c] [d])");
|
|
test_computed_value("grid-template-columns", "subgrid repeat(auto-fill, [c] [d]) [g] [h i]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] repeat(auto-fill, [c] [d]) [g] [h i]");
|
|
test_computed_value("grid-template-columns", "subgrid [a b] repeat(auto-fill, [c] [d]) [g]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] [b] repeat(auto-fill, [c] [d]) [g h]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] [b] repeat(auto-fill, [c] [d])");
|
|
test_computed_value("grid-template-columns", "subgrid repeat(auto-fill, [c] [d e])");
|
|
test_computed_value("grid-template-columns", "subgrid repeat(auto-fill, [c] [d e]) [g] [h i]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] repeat(auto-fill, [c] [d e]) [g] [h i]");
|
|
test_computed_value("grid-template-columns", "subgrid [a b] repeat(auto-fill, [c] [d e]) [g]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] [b] repeat(auto-fill, [c] [d e]) [g h]");
|
|
test_computed_value("grid-template-columns", "subgrid [a] [b] repeat(auto-fill, [c] [d e])");
|
|
|
|
</script>
|