gecko-dev/layout/generic/crashtests/1156257.html
Emilio Cobos Álvarez dbb3111ff1 Bug 1398492: Remove the grid pref. r=mats
MozReview-Commit-ID: 6Qez8NE8oze
2017-12-17 00:04:35 +01:00

17 lines
286 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<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>