summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug613433-2.html
blob: 84d55e7be579af225bd5f48af285d1f23ee5fe12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <style>
      div {
        min-height: 36px;
        overflow-y: auto;
      }
    </style>
    <script src="/tests/SimpleTest/EventUtils.js"></script>
    <script>
      function test() {
        document.querySelector("div").focus();
        // type a character, then press backspace to delete it
        sendChar("X");
        sendKey("BACK_SPACE");
        document.documentElement.removeAttribute("class");
      }
    </script>
  </head>
  <body onload="test()">
    <div id="div1" contenteditable></div>
  </body>
</html>