mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
18 lines
313 B
HTML
18 lines
313 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html style="position: fixed;">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<script>
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var cp = document.caretPositionFromPoint(0, 1);
|
||
|
|
document.documentElement.removeChild(document.body);
|
||
|
|
cp.getClientRect();
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body style="margin: 0;" onload="boom();"></body>
|
||
|
|
</html>
|