mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 06:48:38 +09:00
12 lines
248 B
HTML
12 lines
248 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<body>
|
||
|
|
<script>
|
||
|
|
var b = document.createElement("body");
|
||
|
|
b.style.overflow = "scroll";
|
||
|
|
var h = document.documentElement;
|
||
|
|
h.insertBefore(b, h.firstChild);
|
||
|
|
b.offsetWidth;
|
||
|
|
b.remove();
|
||
|
|
</script>
|
||
|
|
</html>
|