mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 06:18:38 +09:00
11 lines
218 B
HTML
11 lines
218 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<body style="height:1000px">
|
||
|
|
<script>
|
||
|
|
var docElement = document.documentElement;
|
||
|
|
docElement.style.display = 'none';
|
||
|
|
docElement.offsetTop;
|
||
|
|
docElement.style.display = '';
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|