tor-browser

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

bug1484094-1-ref.html (537B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <head>
      4  <meta charset="utf-8">
      5  <script type="text/javascript">
      6 function start()
      7 {
      8  var input = document.querySelector("input");
      9  input.value = '\u{1f468}\u{200d}\u{1f469}\u{200d}\u{1f467}\u{200d}\u{1f466}';
     10  input.addEventListener("focus", () => {
     11    input.setSelectionRange(input.value.length, input.value.length);
     12    document.documentElement.removeAttribute("class");
     13  });
     14  input.focus();
     15 }
     16  </script>
     17 </head>
     18 <body onload="start()">
     19  <input type="text"></input>
     20 </body>
     21 </html>