зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
557 B
HTML
17 строки
557 B
HTML
<!DOCTYPE html><html><script>
|
|
|
|
function boom()
|
|
{
|
|
while (document.documentElement.firstChild)
|
|
document.documentElement.firstChild.remove();
|
|
document.documentElement.contentEditable = "true";
|
|
document.execCommand("strikethrough", false, null);
|
|
try { document.execCommand("justifyfull", false, null); } catch(e) { }
|
|
document.documentElement.offsetHeight;
|
|
try { document.execCommand("delete", false, null); } catch(e) { }
|
|
document.execCommand("inserthtml", false, "<span> <\/span>");
|
|
}
|
|
window.addEventListener("load", boom);
|
|
|
|
</script></html>
|