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