summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/613433-1.html
blob: cdb4b3948a0928200ed1a544f6ba15a7db536407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <style>
      div {
        min-height: 36px;
        overflow-x: auto;
      }
    </style>
    <script>
      function test() {
        document.querySelector("div").focus();
      }
      function focusTriggered() {
        document.documentElement.removeAttribute("class");
      }
    </script>
  </head>
  <body onload="test()">
    <div contenteditable onfocus="focusTriggered()"></div>
  </body>
</html>