mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 06:18:38 +09:00
14 lines
296 B
HTML
14 lines
296 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<body>
|
||
|
|
<input value="foo">
|
||
|
|
<script>
|
||
|
|
var i = document.querySelector("input");
|
||
|
|
i.selectionStart = 1;
|
||
|
|
i.selectionEnd = 2;
|
||
|
|
i.style.display = "none";
|
||
|
|
document.body.clientHeight;
|
||
|
|
i.style.display = "";
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|