gecko-dev/dom/html/crashtests/768344.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
415 B
HTML
Raw Normal View History

2017-11-08 13:47:08 +00:00
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
function f() {
document.removeEventListener("DOMSubtreeModified", f, true);
document.documentElement.setAttributeNS(null, "contenteditable", "false");
}
document.addEventListener("DOMSubtreeModified", f, true);
document.documentElement.contentEditable = "true";
}
</script>
</head>
<body onload="boom();"></body>
</html>