summaryrefslogtreecommitdiffstats
path: root/editor/reftests/selection_visibility_after_reframe-3.html
blob: 1a816a88cc820ed08f840cb77933202bff98abd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
  <body>
    <input value="foo">
    <script>
      var i = document.querySelector("input");
      i.focus();
      i.selectionStart = 1;
      i.selectionEnd = 2;
      i.style.display = "none";
      document.body.clientHeight;
      i.style.display = "";
    </script>
  </body>
</html>