summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/block/body-inline-block-crash.html
blob: 6c859eb6ec49d961b36edb13674284c5e40cdf4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
Test passes if it does not crash.
<script>
if (window.testRunner)
    testRunner.dumpAsText();

function crash() {
    body1 = document.createElement("body");
    i1 = document.createElement("i");
    document.documentElement.appendChild(i1);
    i1.appendChild(body1);
    body1.style.display = "inline-block";
}
document.addEventListener("DOMContentLoaded", crash, false);
</script>
</html>