mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 22:38:41 +09:00
19 lines
447 B
HTML
19 lines
447 B
HTML
|
|
<html><head><script type="text/javascript">
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var dE = document.documentElement;
|
||
|
|
var head = document.getElementsByTagName("head")[0];
|
||
|
|
dE.removeChild(document.body);
|
||
|
|
dE.contentEditable = "true";
|
||
|
|
dE.focus();
|
||
|
|
dE.contentEditable = "false";
|
||
|
|
head.focus();
|
||
|
|
head.contentEditable = "true";
|
||
|
|
try {
|
||
|
|
document.execCommand("selectAll", false, "");
|
||
|
|
} catch(e) {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
</script></head><body onload="boom();"></body></html>
|