tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bug1510942-2.html (560B)


      1 <!doctype html>
      2 <html class="reftest-wait">
      3 <meta charset="utf-8">
      4 <title>Test for bug 1510942: Caret in a transformed empty block</title>
      5 <script src="/tests/SimpleTest/EventUtils.js"></script>
      6 <script src="/tests/SimpleTest/SimpleTest.js"></script>
      7 <style>
      8  #editable {
      9    height: 300px;
     10    width: 100px;
     11    outline: 1px solid black;
     12    opacity: 0;
     13  }
     14 </style>
     15 <div id="editable" contenteditable></div>
     16 <script>
     17 SimpleTest.waitForFocus(function() {
     18  document.getElementById("editable").focus();
     19  document.documentElement.className ="";
     20 });
     21 </script>