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