OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <script> | |
4 if (window.testRunner) | |
5 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); | |
6 </script> | |
7 <link href="resources/grid.css" rel="stylesheet"> | 3 <link href="resources/grid.css" rel="stylesheet"> |
8 <style> | 4 <style> |
9 .grid { | 5 .grid { |
10 width: 100px; | 6 width: 100px; |
11 height: 200px; | 7 height: 200px; |
12 } | 8 } |
13 | 9 |
14 #grid1 { | 10 #grid1 { |
15 grid-template-columns: 30px; | 11 grid-template-columns: 30px; |
16 grid-template-rows: minmax(20px, 80px) 160px; | 12 grid-template-rows: minmax(20px, 80px) 160px; |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 <div class="secondRowFirstColumn" data-expected-height="30" data-expected-wi
dth="10"></div> | 84 <div class="secondRowFirstColumn" data-expected-height="30" data-expected-wi
dth="10"></div> |
89 </div> | 85 </div> |
90 | 86 |
91 <div class="grid" id="grid6" data-expected-width="100" data-expected-height="200
"> | 87 <div class="grid" id="grid6" data-expected-width="100" data-expected-height="200
"> |
92 <div class="firstRowFirstColumn" data-expected-height="90" data-expected-wid
th="30"></div> | 88 <div class="firstRowFirstColumn" data-expected-height="90" data-expected-wid
th="30"></div> |
93 <div class="secondRowFirstColumn" data-expected-height="110" data-expected-w
idth="30"></div> | 89 <div class="secondRowFirstColumn" data-expected-height="110" data-expected-w
idth="30"></div> |
94 </div> | 90 </div> |
95 | 91 |
96 </body> | 92 </body> |
97 </html> | 93 </html> |
OLD | NEW |