зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
326 B
HTML
21 строка
326 B
HTML
<html contentEditable="true">
|
|
<head>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
var r = document.documentElement;
|
|
while(r.firstChild)
|
|
r.firstChild.remove();
|
|
|
|
document.execCommand("contentReadOnly", false, "");
|
|
document.documentElement.focus();
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"></body>
|
|
</html>
|