https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 39ff442a68b35e2412bd3f81a1fe0046dbad56a1 authored by ffxbld on 04 April 2012, 03:40:54 UTC
Added FENNEC_12_0b4_RELEASE FENNEC_12_0b4_BUILD1 tag(s) for changeset a8e7d1956aa3. DONTBUILD CLOSED TREE a=release
Tip revision: 39ff442
bug613433-1.html
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <style>
      div {
        min-height: 36px;
        overflow-x: auto;
      }
    </style>
    <script type="text/javascript" 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>
back to top