| OLD | NEW | 
|    1 <!DOCTYPE html> |    1 <!DOCTYPE html> | 
|    2 <html> |    2 <html> | 
|    3 <head> |    3 <head> | 
|    4 <script> |  | 
|    5 if (window.testRunner) |  | 
|    6     testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); |  | 
|    7 </script> |  | 
|    8 <link href="resources/grid.css" rel="stylesheet"> |    4 <link href="resources/grid.css" rel="stylesheet"> | 
|    9 <style> |    5 <style> | 
|   10 .gridWithoutRepeat { |    6 .gridWithoutRepeat { | 
|   11     grid-template-columns: (a) 50px (b) 100px (c) 200px (d); |    7     grid-template-columns: (a) 50px (b) 100px (c) 200px (d); | 
|   12     grid-template-rows: (e) 50px (f) 100px (g) 200px (h); |    8     grid-template-rows: (e) 50px (f) 100px (g) 200px (h); | 
|   13 } |    9 } | 
|   14  |   10  | 
|   15 .gridWithRepeat { |   11 .gridWithRepeat { | 
|   16     grid-template-columns: (b) 50px (b) 100px (b) 200px (b); |   12     grid-template-columns: (b) 50px (b) 100px (b) 200px (b); | 
|   17     grid-template-rows: (g) 50px (g) 100px (g) 200px (g); |   13     grid-template-rows: (g) 50px (g) 100px (g) 200px (g); | 
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  152 </div> |  148 </div> | 
|  153  |  149  | 
|  154 <div style="position: relative"> |  150 <div style="position: relative"> | 
|  155     <div class="grid gridWithRepeat"> |  151     <div class="grid gridWithRepeat"> | 
|  156         <div class="sizedToGridArea gridItemSpan2GNegativeG" data-offset-x="0" d
     ata-offset-y="50" data-expected-width="50" data-expected-height="300"></div> |  152         <div class="sizedToGridArea gridItemSpan2GNegativeG" data-offset-x="0" d
     ata-offset-y="50" data-expected-width="50" data-expected-height="300"></div> | 
|  157     </div> |  153     </div> | 
|  158 </div> |  154 </div> | 
|  159  |  155  | 
|  160 </body> |  156 </body> | 
|  161 </html> |  157 </html> | 
| OLD | NEW |