blob: d4c1ef2471f1982c6565076f3b655447f8d9029c [file] [log] [blame]
tony@chromium.org2aa13382012-08-20 21:32:03 +00001<!DOCTYPE html>
2<html>
3<script>
4if (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>