Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/xul/crashtests/crashtests.list
<html>
<head>
<script>
function boom()
{
window.addEventListener("DOMSubtreeModified", function(){});
var m = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "menuitem");
document.body.appendChild(m);
m.setAttribute("type", "checkbox");
m.setAttribute("checked", "true");
m.removeAttribute("type");
}
</script>
</head>
<body onload="boom();"></body>
</html>