summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/1156588.html
blob: b48bc3af253af5c3a33b65523f018123880e9f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>

function boom()
{
    document.documentElement.offsetHeight;
    document.getElementById("x").style.content = "'x'";
    document.documentElement.offsetHeight;
    document.getElementById("s").remove();
    document.documentElement.offsetHeight;
}

</script>
</head>

<body onload="boom();">

<div style="display: inline-grid; white-space: pre;"><div id="x"><span>
<span>
</span><span id="s"></span></span></div></div>

</body>
</html>