gecko-dev/layout/style/crashtests/1227498.html
2018-06-08 20:56:04 +02:00

27 lines
499 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom()
{
addScopedSheet("#x { }");
}
function addScopedSheet(text)
{
var sheet = document.createElementNS("http://www.w3.org/1999/xhtml", "style");
sheet.appendChild(document.createTextNode(text));
sheet.scoped = true;
document.documentElement.appendChild(sheet);
}
</script>
</head>
<body onload="boom();">
<embed type="application/x-missing-plugin"></embed>
</body>
</html>