mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 23:08:39 +09:00
22 lines
542 B
HTML
22 lines
542 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<script>
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var br = document.getElementById("br");
|
||
|
|
br.contentEditable = "true";
|
||
|
|
br.focus();
|
||
|
|
|
||
|
|
try { document.execCommand("justifyfull", false, null); } catch(e) { }
|
||
|
|
try { document.execCommand("justifyfull", false, null); } catch(e) { }
|
||
|
|
document.execCommand("underline", false, null);
|
||
|
|
document.execCommand("insertimage", false, "foo");
|
||
|
|
try { document.execCommand("outdent", false, null); } catch(e) { }
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body onload="boom();"><br id="br"></body>
|
||
|
|
</html>
|