mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-12 13:31:30 +00:00
12 lines
421 B
HTML
12 lines
421 B
HTML
<html contenteditable="true" xmlns="http://www.w3.org/1999/xhtml"><head><script>
|
|
|
|
function boom()
|
|
{
|
|
document.execCommand("selectAll", false, "");
|
|
try { document.execCommand("justifyfull", false, null); } catch(e) { }
|
|
try { document.execCommand("inserthorizontalrule", false, "false"); } catch(e) { }
|
|
document.execCommand("delete", false, null);
|
|
}
|
|
|
|
</script></head>x y z<body onload="boom();"><div/></body></html>
|