tor-browser

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

bug1263288-ref.html (697B)


      1 <!DOCTYPE HTML><html>
      2 <!--
      3 https://bugzilla.mozilla.org/show_bug.cgi?id=1263288
      4 -->
      5 <head>
      6    <meta charset="utf-8">
      7    <title>Testcase #1 for bug 1263288</title>
      8    <script src="/tests/SimpleTest/SimpleTest.js"></script>
      9    <script src="/tests/SimpleTest/EventUtils.js"></script>
     10 </head>
     11 <body>
     12 <div id="readonly">xyz</div>
     13 <div id="editable" spellcheck=false contenteditable='true' style="outline: 1px solid;"><span>xyz</span><br></br></div>
     14 <script>
     15 
     16 function start() {
     17  var sel = window.getSelection();
     18  // Focus on editable block.
     19  theDiv = document.getElementById("editable");
     20  theDiv.focus();
     21  sel.collapse(theDiv, 1);
     22 }
     23 
     24 SimpleTest.waitForFocus(start);
     25 
     26 </script>
     27 </body>
     28 </html>