| 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 <link href="../css-intrinsic-dimensions/resources/width-keyword-classes.css" rel
=stylesheet> | 5 <link href="../css-intrinsic-dimensions/resources/width-keyword-classes.css" rel
=stylesheet> |
| 10 <style> | 6 <style> |
| 11 .gridMinContentFixed { | 7 .gridMinContentFixed { |
| 12 grid-template-columns: minmax(min-content, 40px) minmax(min-content, 40px); | 8 grid-template-columns: minmax(min-content, 40px) minmax(min-content, 40px); |
| 13 grid-template-rows: 10px; | 9 grid-template-rows: 10px; |
| 14 font: 10px/1 Ahem; | 10 font: 10px/1 Ahem; |
| 15 } | 11 } |
| 16 | 12 |
| 17 .gridFixedMinContent { | 13 .gridFixedMinContent { |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 <div class="firstRowFirstColumn">XX XX XX</div> | 127 <div class="firstRowFirstColumn">XX XX XX</div> |
| 132 <div class="firstRowBothColumn">XX XX XX</div> | 128 <div class="firstRowBothColumn">XX XX XX</div> |
| 133 </div> | 129 </div> |
| 134 <div class="grid gridAutoContent max-content" data-expected-height="10" data-exp
ected-width="120"> | 130 <div class="grid gridAutoContent max-content" data-expected-height="10" data-exp
ected-width="120"> |
| 135 <div class="firstRowBothColumn">XX XX XX</div> | 131 <div class="firstRowBothColumn">XX XX XX</div> |
| 136 <div class="firstRowSecondColumn">XX XX XX</div> | 132 <div class="firstRowSecondColumn">XX XX XX</div> |
| 137 </div> | 133 </div> |
| 138 | 134 |
| 139 </body> | 135 </body> |
| 140 </html> | 136 </html> |
| OLD | NEW |