| 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 grid-template-columns: 40% 60%; | 6 grid-template-columns: 40% 60%; |
| 11 grid-template-rows: 30% 70%; | 7 grid-template-rows: 30% 70%; |
| 12 width: 400px; | 8 width: 400px; |
| 13 height: 300px; | 9 height: 300px; |
| 14 } | 10 } |
| 15 | 11 |
| 16 #bigGrid { | 12 #bigGrid { |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 <div class="sizedToGridArea thirdRowSpanning2Column3" data-offset-x="0" data
-offset-y="50" data-expected-width="100" data-expected-height="25"></div> | 170 <div class="sizedToGridArea thirdRowSpanning2Column3" data-offset-x="0" data
-offset-y="50" data-expected-width="100" data-expected-height="25"></div> |
| 175 </div> | 171 </div> |
| 176 | 172 |
| 177 <div style="position: relative"> | 173 <div style="position: relative"> |
| 178 <div class="grid" id="bigGrid" data-expected-width="200" data-expected-height="1
00"> | 174 <div class="grid" id="bigGrid" data-expected-width="200" data-expected-height="1
00"> |
| 179 <div class="sizedToGridArea underflowSpanning" data-offset-x="0" data-offset
-y="0" data-expected-width="100" data-expected-height="75"></div> | 175 <div class="sizedToGridArea underflowSpanning" data-offset-x="0" data-offset
-y="0" data-expected-width="100" data-expected-height="75"></div> |
| 180 </div> | 176 </div> |
| 181 | 177 |
| 182 </body> | 178 </body> |
| 183 </html> | 179 </html> |
| OLD | NEW |