summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css-grid-layout/should-not-collapse-anonymous-blocks.html
blob: c1146183f4a55bfa6cee57beabe505ded144d8f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<script>
if (window.testRunner) {
    testRunner.dumpAsText();
}
</script>
<style>
#a:nth-last-child(-n+2) {
    -webkit-flow-into: body;
}
</style>
<body>
<p>This test passes if it does not crash.</p>
<div style="display: grid;">
    <div id=a></div>
    <div style="display: inline; "></div>
</div>
</html>