blob: 867bebf1a903dd8b7723448d53022d1a3e26451f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<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>
|