gecko-dev/layout/base/crashtests/1156588.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

27 lines
499 B
HTML

<!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>