gecko/layout/reftests/editor/selection_visibility_after_reframe.html
Ehsan Akhgari 473351faa5 Bug 674820 - input/textarea.selectionStart/selectionEnd/selectionDirection should not require the presence of a frame; r=bzbarsky
--HG--
rename : layout/reftests/editor/selection_visibility_after_reframe.html => layout/reftests/editor/selection_visibility_after_reframe-3.html
2011-07-29 17:31:57 -04:00

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>