Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/html/crashtests/crashtests.list
<head>
<script>
function boom()
{
var input = document.getElementById("input");
input.appendChild(legend);
legend.focus();
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 3);" contenteditable="true">
<input contenteditable="false"><input id="input"><q><div></div></q>
</body>
</html>