summaryrefslogtreecommitdiffstats
path: root/editor/reftests/selection_visibility_after_reframe-3.html
blob: b05f130a13722d791faaf51626c21bd2a962709b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!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>