| Index: third_party/WebKit/LayoutTests/external/csswg-test/css-grid-1/grid-model/grid-support-display-001.xht
|
| diff --git a/third_party/WebKit/LayoutTests/external/csswg-test/css-grid-1/grid-model/grid-support-display-001.xht b/third_party/WebKit/LayoutTests/external/csswg-test/css-grid-1/grid-model/grid-support-display-001.xht
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..eb318d14b892fbfae1d278f20d62973cb60b0ae3
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/csswg-test/css-grid-1/grid-model/grid-support-display-001.xht
|
| @@ -0,0 +1,80 @@
|
| +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| +<html xmlns="http://www.w3.org/1999/xhtml">
|
| + <head>
|
| + <title>CSS Grid Layout Test: DOM support for 'grid' and 'inline-grid' 'display' values</title>
|
| + <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com" />
|
| + <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2014-11-18 -->
|
| + <link rel="help" href="http://www.w3.org/TR/css-grid-1/#grid-containers" title="3.1 Establishing Grid Containers" />
|
| + <meta name="flags" content="dom" />
|
| + <meta name="assert" content="This test checks that 'grid' and 'inline-grid' values for 'display' property are supported so that DOM methods, specifically getComputedValue(), and its associated CSS2Properties interface, can fetch such 'display' values." />
|
| + <script src="/resources/testharness.js" type="text/javascript"></script>
|
| + <script src="/resources/testharnessreport.js" type="text/javascript"></script>
|
| + <style type="text/css"><![CDATA[
|
| + .grid {
|
| + display: grid;
|
| + }
|
| +
|
| + .inline-grid {
|
| + display: inline-grid;
|
| + }
|
| + ]]></style>
|
| + </head>
|
| + <body>
|
| + <div id="log"></div>
|
| +
|
| + <div id="style-grid" style="display: grid;"></div>
|
| + <div id="style-inline-grid" style="display: inline-grid;"></div>
|
| +
|
| + <div id="css-grid" class="grid"></div>
|
| + <div id="css-inline-grid" class="inline-grid"></div>
|
| +
|
| + <div id="js-grid"></div>
|
| + <div id="js-inline-grid"></div>
|
| +
|
| + <script type="text/javascript"><![CDATA[
|
| + function testStyleDisplay(element, value) {
|
| + assert_equals(element.style.display, value, "Style display should be '" + value + "'");
|
| + }
|
| +
|
| + function testComputedStyleDisplay(element, value) {
|
| + assert_equals(getComputedStyle(element).getPropertyValue("display"), value, "getComputedStyle() display should be '" + value + "'");
|
| + }
|
| +
|
| + var styleGrid = document.getElementById("style-grid");
|
| + test(function() {
|
| + testStyleDisplay(styleGrid, "grid");
|
| + testComputedStyleDisplay(styleGrid, "grid");
|
| + }, "Test style display 'grid'");
|
| +
|
| + var styleInlineGrid = document.getElementById("style-inline-grid");
|
| + test(function() {
|
| + testStyleDisplay(styleInlineGrid, "inline-grid");
|
| + testComputedStyleDisplay(styleInlineGrid, "inline-grid");
|
| + }, "Test style display 'inline-grid'");
|
| +
|
| + var cssGrid = document.getElementById("css-grid");
|
| + test(function() {
|
| + testComputedStyleDisplay(cssGrid, "grid");
|
| + }, "Test CSS display 'grid'");
|
| +
|
| + var cssInlineGrid = document.getElementById("css-inline-grid");
|
| + test(function() {
|
| + testComputedStyleDisplay(cssInlineGrid, "inline-grid");
|
| + }, "Test CSS display 'inline-grid'");
|
| +
|
| + var jsGrid = document.getElementById("js-grid");
|
| + jsGrid.style.display = "grid";
|
| + test(function() {
|
| + testStyleDisplay(jsGrid, "grid");
|
| + testComputedStyleDisplay(jsGrid, "grid");
|
| + }, "Test JavaScript display 'grid'");
|
| +
|
| + var jsInlineGrid = document.getElementById("js-inline-grid");
|
| + jsInlineGrid.style.display = "inline-grid";
|
| + test(function() {
|
| + testStyleDisplay(jsInlineGrid, "inline-grid");
|
| + testComputedStyleDisplay(jsInlineGrid, "inline-grid");
|
| + }, "Test JavaScript display 'inline-grid'");
|
| + ]]></script>
|
| + </body>
|
| +</html>
|
|
|