mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-13 23:17:57 +00:00
91118b2f26
--HG-- rename : layout/reftests/editor/selection_visibility_after_reframe.html => layout/reftests/editor/selection_visibility_after_reframe-3.html
15 lines
296 B
HTML
15 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>
|