tor-browser

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

1478604-ref.html (442B)


      1 <!doctype html>
      2 <html class="reftest-wait">
      3 <style>
      4  input {
      5    border: 0;
      6  }
      7 </style>
      8 <label id="fooLabel" for="foo">Foo label</label>
      9 <input id="foo" type="text" value="foo" >
     10 <label id="barLabel" for="bar">Bar label</label>
     11 <input id="bar" type="text" value="bar" inputmode="none">
     12 <script>
     13 onload = function() {
     14  barLabel.click();
     15  requestAnimationFrame(() => {
     16    document.documentElement.className = "";
     17  });
     18 }
     19 </script>
     20 </html>