| OLD | NEW | 
|    1 <!DOCTYPE html> |    1 <!DOCTYPE html> | 
|    2 <html> |    2 <html> | 
|    3 <link href="resources/grid.css" rel="stylesheet"> |    3 <link href="resources/grid.css" rel="stylesheet"> | 
|    4 <style> |    4 <style> | 
|    5 .grid { |    5 .grid { | 
|    6     grid-auto-rows: 50px; |    6     grid-auto-rows: 50px; | 
|    7     grid-auto-columns: 100px; |    7     grid-auto-columns: 100px; | 
|    8 } |    8 } | 
|    9  |    9  | 
|   10 .gridNamedGridLinesColumns { |   10 .gridNamedGridLinesColumns { | 
|   11     grid-template-columns: 50px 100px (line) 200px (line); |   11     grid-template-columns: 50px 100px [line] 200px [line]; | 
|   12 } |   12 } | 
|   13  |   13  | 
|   14 .gridNamedGridLinesRows { |   14 .gridNamedGridLinesRows { | 
|   15     grid-template-rows: 50px 100px (line) 200px (line); |   15     grid-template-rows: 50px 100px [line] 200px [line]; | 
|   16 } |   16 } | 
|   17  |   17  | 
|   18 .autoRowAutoColumnSpanning3 { |   18 .autoRowAutoColumnSpanning3 { | 
|   19     background-color: teal; |   19     background-color: teal; | 
|   20     grid-column: span 3; |   20     grid-column: span 3; | 
|   21     grid-row: auto; |   21     grid-row: auto; | 
|   22 } |   22 } | 
|   23  |   23  | 
|   24 .autoRowSpanning2AutoColumn { |   24 .autoRowSpanning2AutoColumn { | 
|   25     background-color: aqua; |   25     background-color: aqua; | 
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  185         <div class="sizedToGridArea firstRowAutoColumn" data-offset-x="300" data
     -offset-y="0" data-expected-width="100" data-expected-height="50"></div> |  185         <div class="sizedToGridArea firstRowAutoColumn" data-offset-x="300" data
     -offset-y="0" data-expected-width="100" data-expected-height="50"></div> | 
|  186         <div class="sizedToGridArea autoRowSpanningLineAutoColumn" data-offset-x
     ="200" data-offset-y="50" data-expected-width="100" data-expected-height="100"><
     /div> |  186         <div class="sizedToGridArea autoRowSpanningLineAutoColumn" data-offset-x
     ="200" data-offset-y="50" data-expected-width="100" data-expected-height="100"><
     /div> | 
|  187         <div class="sizedToGridArea thirdRowAutoColumn" data-offset-x="200" data
     -offset-y="150" data-expected-width="100" data-expected-height="200"></div> |  187         <div class="sizedToGridArea thirdRowAutoColumn" data-offset-x="200" data
     -offset-y="150" data-expected-width="100" data-expected-height="200"></div> | 
|  188         <div class="sizedToGridArea autoRowSpanningLineAutoColumn" data-offset-x
     ="300" data-offset-y="50" data-expected-width="100" data-expected-height="100"><
     /div> |  188         <div class="sizedToGridArea autoRowSpanningLineAutoColumn" data-offset-x
     ="300" data-offset-y="50" data-expected-width="100" data-expected-height="100"><
     /div> | 
|  189         <div class="sizedToGridArea autoRowSpanningLineAutoColumn" data-offset-x
     ="300" data-offset-y="150" data-expected-width="100" data-expected-height="200">
     </div--> |  189         <div class="sizedToGridArea autoRowSpanningLineAutoColumn" data-offset-x
     ="300" data-offset-y="150" data-expected-width="100" data-expected-height="200">
     </div--> | 
|  190     </div> |  190     </div> | 
|  191 </div> |  191 </div> | 
|  192  |  192  | 
|  193 </body> |  193 </body> | 
|  194 </html> |  194 </html> | 
| OLD | NEW |