gecko-dev/layout/generic/crashtests/1015562.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

16 lines
237 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
document.getElementById("r").appendChild(document.createTextNode("B"));
}
</script>
</head>
<body onload="boom();">
<div id="r" style="display: grid;">A</div>
</body>
</html>