mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
21 lines
332 B
HTML
21 lines
332 B
HTML
<html contentEditable="true">
|
|
<head>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
var r = document.documentElement;
|
|
while(r.firstChild)
|
|
r.removeChild(r.firstChild);
|
|
|
|
document.execCommand("contentReadOnly", false, "");
|
|
document.documentElement.focus();
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"></body>
|
|
</html>
|