| 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); | |
| 6 testRunner.dumpAsText(); | 5 testRunner.dumpAsText(); |
| 7 } | 6 } |
| 8 </script> | 7 </script> |
| 9 <style> | 8 <style> |
| 10 #a:nth-last-child(-n+2) { | 9 #a:nth-last-child(-n+2) { |
| 11 -webkit-flow-into: body; | 10 -webkit-flow-into: body; |
| 12 } | 11 } |
| 13 </style> | 12 </style> |
| 14 <body> | 13 <body> |
| 15 <p>This test passes if it does not crash.</p> | 14 <p>This test passes if it does not crash.</p> |
| 16 <div style="display: grid;"> | 15 <div style="display: grid;"> |
| 17 <div id=a></div> | 16 <div id=a></div> |
| 18 <div style="display: inline; "></div> | 17 <div style="display: inline; "></div> |
| 19 </div> | 18 </div> |
| 20 </html> | 19 </html> |
| OLD | NEW |