summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/css3/flexbox/anonymous-block-merge-crash.html
blob: 05d3a854e2954b5be00229e74d157d543ffe9b2e (plain)
1
2
3
4
5
6
7
<div style="display:-webkit-flex; display:-moz-flex;"><div id="inner"></div>If this page doesn't crash then this test passes.</div>
<script>
if (window.testRunner)
    testRunner.dumpAsText()
var inner = document.getElementById("inner");
inner.parentNode.removeChild(inner);
</script>