Mypal/dom/xul/crashtests/354611-1.html
2019-03-11 13:26:37 +03:00

20 lines
302 B
HTML

<html>
<head>
<script>
var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
function boom()
{
var z = document.createElementNS(XUL_NS, "window");
document.body.appendChild(z);
z.setAttribute("hidechrome", "true");
}
</script>
<body onload="boom();">
</body>
</html>