summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/1156257.html
blob: e58c1ba5db896da6dd480a8263c3e1f85af0c795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!--
user_pref("layout.css.grid.enabled", true);
-->
<script>
function boom()
{
    document.documentElement.offsetHeight;
    document.getElementById("g").firstChild.remove();
}
</script>
</head>
<body onload="boom();">
<div style="display: grid;" id="g">a b<br></div>
</body>
</html>