| 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 .gridMaxMaxContent { |    5 .gridMaxMaxContent { | 
|   10     grid-template-columns: minmax(10px, max-content) minmax(10px, 1fr); |    6     grid-template-columns: minmax(10px, max-content) minmax(10px, 1fr); | 
|   11     grid-template-rows: 50px; |    7     grid-template-rows: 50px; | 
|   12 } |    8 } | 
|   13  |    9  | 
|   14 .gridMinMinContent { |   10 .gridMinMinContent { | 
|   15     grid-template-columns: minmax(10px, 1fr) minmax(min-content, 50px); |   11     grid-template-columns: minmax(10px, 1fr) minmax(min-content, 50px); | 
|   16     grid-template-rows: 50px; |   12     grid-template-rows: 50px; | 
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  141         <div class="sizedToGridArea firstRowSecondColumn" data-expected-width="1
     00" data-expected-height="50"> |  137         <div class="sizedToGridArea firstRowSecondColumn" data-expected-width="1
     00" data-expected-height="50"> | 
|  142             <div style="display: inline-block; width: 100px;"></div> |  138             <div style="display: inline-block; width: 100px;"></div> | 
|  143         </div> |  139         </div> | 
|  144         <div class="sizedToGridArea firstRowThirdColumn" data-expected-width="20
     0" data-expected-height="50">XXXXXXXXXX XXXXXXXXX</div> |  140         <div class="sizedToGridArea firstRowThirdColumn" data-expected-width="20
     0" data-expected-height="50">XXXXXXXXXX XXXXXXXXX</div> | 
|  145         <div class="sizedToGridArea firstRowFourthColumn" data-expected-width="6
     0" data-expected-height="50"></div> |  141         <div class="sizedToGridArea firstRowFourthColumn" data-expected-width="6
     0" data-expected-height="50"></div> | 
|  146     </div> |  142     </div> | 
|  147 </div> |  143 </div> | 
|  148  |  144  | 
|  149 </body> |  145 </body> | 
|  150 </html> |  146 </html> | 
| OLD | NEW |