OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <meta name="viewport" content="width=800"> |
| 5 <style> |
| 6 html { font-size: 16px; } |
| 7 body { width: 800px; margin: 0; overflow-y: hidden; } |
| 8 </style> |
| 9 <script src="resources/autosizingTest.js"></script> |
| 10 </head> |
| 11 <body> |
| 12 <div style="display: grid"> |
| 13 <div> |
| 14 This tests that RenderGrid creates an autosizing layout scope. |
| 15 The test passes if it does not crash. |
| 16 </div> |
| 17 <div> |
| 18 Lorem ipsum dolor sit amet, consectetur adipisicing elit, |
| 19 sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. |
| 20 </div> |
| 21 </div> |
| 22 <script> |
| 23 if (window.testRunner) |
| 24 testRunner.dumpAsText(); |
| 25 </script> |
| 26 </body> |
| 27 </html> |
OLD | NEW |