tor-browser

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

595727-1.html (582B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <head>
      4 <script>
      5 
      6 function doTest()
      7 {
      8  var r = document.documentElement;
      9  while(r.firstChild) { r.firstChild.remove(); }
     10  var body = document.createElementNS("http://www.w3.org/1999/xhtml", "body"); 
     11  r.appendChild(body); 
     12  body.contentEditable = "true"; 
     13  document.execCommand("inserthtml", false, "<span style=\"position:relative;left:0.8px\">a<select></select>a</span>"); 
     14 
     15  document.documentElement.removeAttribute("class");
     16 }
     17 
     18 document.addEventListener("MozReftestInvalidate", doTest);
     19 </script>
     20 </head>
     21 
     22 <body></body>
     23 </html>