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: minmax(20px, 80px) 60px; | 11 grid-template-columns: minmax(20px, 80px) 60px; |
16 grid-template-rows: 30px; | 12 grid-template-rows: 30px; |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 <div class="firstRowSecondColumn" data-expected-height="100" data-expected-w
idth="30"></div> | 85 <div class="firstRowSecondColumn" data-expected-height="100" data-expected-w
idth="30"></div> |
90 </div> | 86 </div> |
91 | 87 |
92 <div class="grid" id="grid6" data-expected-width="100" data-expected-height="200
"> | 88 <div class="grid" id="grid6" data-expected-width="100" data-expected-height="200
"> |
93 <div class="firstRowFirstColumn" data-expected-height="30" data-expected-wid
th="40"></div> | 89 <div class="firstRowFirstColumn" data-expected-height="30" data-expected-wid
th="40"></div> |
94 <div class="firstRowSecondColumn" data-expected-height="30" data-expected-wi
dth="60"></div> | 90 <div class="firstRowSecondColumn" data-expected-height="30" data-expected-wi
dth="60"></div> |
95 </div> | 91 </div> |
96 | 92 |
97 </body> | 93 </body> |
98 </html> | 94 </html> |
OLD | NEW |