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

23 строки
415 B
HTML

<!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>