summaryrefslogtreecommitdiffstats
path: root/editor/reftests/caret_after_reframe.html
blob: 5e9c0f1330effc729693eb7be0c181502aa8df3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html class="reftest-wait">
  <body>
    <input onfocus="focused()" autofocus>
    <script>
      function focused() {
        var i = document.querySelector("input");
        i.style.display = "block";
        document.offsetWidth;
        document.documentElement.removeAttribute("class");
      }
    </script>
  </body>
</html>