Raw File
bug613433-ref.html
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <style>
      div {
        min-height: 36px;
      }
    </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>
back to top