summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/1156588.html
blob: ed0098f79ad3183aaae7a24b97f5aeef139b1ea5 (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
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!--
user_pref("layout.css.grid.enabled", true);
-->
<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>