| 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 .smallGrid { | 5 .smallGrid { |
| 10 grid-template-columns: 50px 100px; | 6 grid-template-columns: 50px 100px; |
| 11 grid-template-rows: 50px 100px; | 7 grid-template-rows: 50px 100px; |
| 12 } | 8 } |
| 13 | 9 |
| 14 .bigGrid { | 10 .bigGrid { |
| 15 grid-template-columns: 50px 100px 150px 200px; | 11 grid-template-columns: 50px 100px 150px 200px; |
| 16 grid-template-rows: 50px 100px 150px 200px; | 12 grid-template-rows: 50px 100px 150px 200px; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 | 139 |
| 144 <div class="unconstrainedContainer"> | 140 <div class="unconstrainedContainer"> |
| 145 <div class="grid bigGrid gridAutoFlowRow"> | 141 <div class="grid bigGrid gridAutoFlowRow"> |
| 146 <div class="sizedToGridArea negativeOverflowingRowFirstColumn" data-offs
et-x="0" data-offset-y="0" data-expected-width="50" data-expected-height="50">XX
XXX XXXXX XXXXX</div> | 142 <div class="sizedToGridArea negativeOverflowingRowFirstColumn" data-offs
et-x="0" data-offset-y="0" data-expected-width="50" data-expected-height="50">XX
XXX XXXXX XXXXX</div> |
| 147 <div class="sizedToGridArea secondRowNegativeOverflowingColumn" data-off
set-x="0" data-offset-y="50" data-expected-width="50" data-expected-height="100"
>XXXXX XXXXX XXXXX</div> | 143 <div class="sizedToGridArea secondRowNegativeOverflowingColumn" data-off
set-x="0" data-offset-y="50" data-expected-width="50" data-expected-height="100"
>XXXXX XXXXX XXXXX</div> |
| 148 </div> | 144 </div> |
| 149 </div> | 145 </div> |
| 150 | 146 |
| 151 </body> | 147 </body> |
| 152 </html> | 148 </html> |
| OLD | NEW |