| 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 .grid { | 5 .grid { |
| 10 grid-template-columns: 40% 60%; | 6 grid-template-columns: 40% 60%; |
| 11 grid-template-rows: 30% 70%; | 7 grid-template-rows: 30% 70%; |
| 12 width: 400px; | 8 width: 400px; |
| 13 height: 300px; | 9 height: 300px; |
| 14 } | 10 } |
| 15 | 11 |
| 16 .firstRowFirstColumn { | 12 .firstRowFirstColumn { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 <div class="grid" style="-webkit-writing-mode: vertical-lr;" data-expected-width
="400" data-expected-height="300"> | 65 <div class="grid" style="-webkit-writing-mode: vertical-lr;" data-expected-width
="400" data-expected-height="300"> |
| 70 <div class="firstRowFirstColumn" data-expected-width="120" data-expected-hei
ght="15"></div> | 66 <div class="firstRowFirstColumn" data-expected-width="120" data-expected-hei
ght="15"></div> |
| 71 <div class="firstRowSecondColumn" data-expected-width="15" data-expected-hei
ght="180"></div> | 67 <div class="firstRowSecondColumn" data-expected-width="15" data-expected-hei
ght="180"></div> |
| 72 <div class="secondRowFirstColumn" data-expected-width="140" data-expected-he
ight="60"></div> | 68 <div class="secondRowFirstColumn" data-expected-width="140" data-expected-he
ight="60"></div> |
| 73 <div class="secondRowSecondColumn" data-expected-width="280" data-expected-h
eight="180"></div> | 69 <div class="secondRowSecondColumn" data-expected-width="280" data-expected-h
eight="180"></div> |
| 74 </div> | 70 </div> |
| 75 </div> | 71 </div> |
| 76 | 72 |
| 77 </body> | 73 </body> |
| 78 </html> | 74 </html> |
| OLD | NEW |