mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-26 01:08:39 +09:00
20 lines
332 B
HTML
20 lines
332 B
HTML
<html contentEditable="true">
|
|
<head>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
var r = document.documentElement;
|
|
while(r.firstChild)
|
|
r.removeChild(r.firstChild);
|
|
|
|
document.execCommand("contentReadOnly", false, "");
|
|
document.documentElement.focus();
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"></body>
|
|
</html>
|