tony@chromium.org | 2aa1338 | 2012-08-20 21:32:03 +0000 | [diff] [blame] | 1 | <!DOCTYPE html> |
2 | <html> | ||||
3 | <script> | ||||
4 | if (window.testRunner) { | ||||
5 | testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); | ||||
6 | testRunner.dumpAsText(); | ||||
7 | } | ||||
8 | </script> | ||||
9 | <style> | ||||
10 | #a:nth-last-child(-n+2) { | ||||
11 | -webkit-flow-into: body; | ||||
12 | } | ||||
13 | </style> | ||||
14 | <body> | ||||
15 | <p>This test passes if it does not crash.</p> | ||||
16 | <div style="display: -webkit-grid;"> | ||||
17 | <div id=a></div> | ||||
18 | <div style="display: inline; "></div> | ||||
19 | </div> | ||||
20 | </html> |