mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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()">
|