| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <script> | 3 <script> |
| 4 if (window.testRunner) | 4 if (window.testRunner) |
| 5 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); | 5 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); |
| 6 </script> | 6 </script> |
| 7 <link href="resources/grid.css" rel="stylesheet"> | 7 <link href="resources/grid.css" rel="stylesheet"> |
| 8 <style> | 8 <style> |
| 9 .grid { | 9 .grid { |
| 10 grid-definition-columns: 100px 300px; | 10 grid-template-columns: 100px 300px; |
| 11 grid-definition-rows: 50px 150px; | 11 grid-template-rows: 50px 150px; |
| 12 height: 200px; | 12 height: 200px; |
| 13 width: 400px; | 13 width: 400px; |
| 14 } | 14 } |
| 15 | 15 |
| 16 .percentWidth { | 16 .percentWidth { |
| 17 width: 100%; | 17 width: 100%; |
| 18 height: 15px; | 18 height: 15px; |
| 19 } | 19 } |
| 20 | 20 |
| 21 .percentHeight { | 21 .percentHeight { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 </div> | 55 </div> |
| 56 | 56 |
| 57 <div class="grid"> | 57 <div class="grid"> |
| 58 <div class="firstRowFirstColumn percentWidth verticalRL" data-expected-width
="100" data-expected-height="15"></div> | 58 <div class="firstRowFirstColumn percentWidth verticalRL" data-expected-width
="100" data-expected-height="15"></div> |
| 59 <div class="firstRowSecondColumn percentHeight" data-expected-width="15" dat
a-expected-height="50"></div> | 59 <div class="firstRowSecondColumn percentHeight" data-expected-width="15" dat
a-expected-height="50"></div> |
| 60 <div class="secondRowFirstColumn percentHeightAndWidth verticalRL" data-expe
cted-width="100" data-expected-height="150"></div> | 60 <div class="secondRowFirstColumn percentHeightAndWidth verticalRL" data-expe
cted-width="100" data-expected-height="150"></div> |
| 61 <div class="secondRowSecondColumn percentHeightAndWidth" data-expected-width
="300" data-expected-height="150"></div> | 61 <div class="secondRowSecondColumn percentHeightAndWidth" data-expected-width
="300" data-expected-height="150"></div> |
| 62 </div> | 62 </div> |
| 63 </body> | 63 </body> |
| 64 </html> | 64 </html> |
| OLD | NEW |