gecko-dev/dom/base/crashtests/1281715.html
Emilio Cobos Álvarez 9509cd7e32 Bug 1453789: Remove Element.createShadowRoot. r=smaug
MozReview-Commit-ID: Hgxbp1Icgvh
2018-04-13 20:51:55 +02:00

25 lines
421 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
html {
color: orange;
}
</style>
<script>
function boom()
{
document.documentElement.offsetHeight;
document.getElementById("hostW").attachShadow({ mode: "open" }).innerHTML = '<z></z>';
document.getElementsByTagName("style")[0].remove();
}
</script>
</head>
<body onload="boom();"><div style="display: contents;" id="hostW"></div></body>
</html>