mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-01 22:07:41 +00:00
23 lines
415 B
HTML
23 lines
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>
|