mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-12 13:31:30 +00:00
16 lines
424 B
HTML
16 lines
424 B
HTML
<!doctype html>
|
|
<script>
|
|
function boom() {
|
|
var r = document.documentElement;
|
|
while (r.firstChild) {
|
|
r.removeChild(r.firstChild);
|
|
}
|
|
|
|
document.documentElement.contentEditable = "true";
|
|
document.documentElement.appendChild(document.createElement("span"));
|
|
document.documentElement.firstChild.appendChild(document.createTextNode("_"));
|
|
document.execCommand("forwarddelete");
|
|
}
|
|
</script>
|
|
<body onload="boom()">
|