OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script> | 4 <script> |
5 if (window.testRunner) | 5 if (window.testRunner) |
6 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); | 6 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); |
7 </script> | 7 </script> |
8 <link href="resources/grid.css" rel="stylesheet"> | 8 <link href="resources/grid.css" rel="stylesheet"> |
9 <style> | 9 <style> |
10 .gridAutoFixedFixed { | 10 .gridAutoFixedFixed { |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 element.style.gridAutoRows = "initial"; | 151 element.style.gridAutoRows = "initial"; |
152 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-auto-columns'
)", "'auto'"); | 152 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-auto-columns'
)", "'auto'"); |
153 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-auto-rows')",
"'auto'"); | 153 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-auto-rows')",
"'auto'"); |
154 | 154 |
155 document.body.removeChild(element); | 155 document.body.removeChild(element); |
156 } | 156 } |
157 debug(""); | 157 debug(""); |
158 debug("Test setting grid-auto-columns and grid-auto-rows to 'initial' through JS
"); | 158 debug("Test setting grid-auto-columns and grid-auto-rows to 'initial' through JS
"); |
159 testInitial(); | 159 testInitial(); |
160 </script> | 160 </script> |
161 <script src="../js/resources/js-test-post.js"></script> | |
162 </body> | 161 </body> |
163 </html> | 162 </html> |
OLD | NEW |