mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-26 20:39:35 +00:00
16 lines
330 B
HTML
16 lines
330 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<input value="foo">
|
|
<script>
|
|
var i = document.querySelector("input");
|
|
i.selectionStart = 1;
|
|
i.selectionEnd = 2;
|
|
document.body.clientHeight;
|
|
i.style.display = "none";
|
|
document.body.clientHeight;
|
|
i.style.display = "";
|
|
</script>
|
|
</body>
|
|
</html>
|