Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/bindings/crashtests/crashtests.list
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom()
{
document.body.appendChild(frame);
var frameDoc = frame.contentDocument;
frameDoc.contentEditable = "true";
document.body.removeChild(frame);
SpecialPowers.gc();
frameDoc.focus();
}
</script>
</head>
<body onload="boom();"></body>
</html>