tor-browser

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

select-only-picker-opt-in-ref.html (400B)


      1 <!DOCTYPE html>
      2 <html class=reftest-wait>
      3 <script src="/resources/testdriver.js"></script>
      4 <script src="/resources/testdriver-vendor.js"></script>
      5 
      6 <select>
      7  <option>option</option>
      8 </select>
      9 
     10 <script>
     11 (async () => {
     12  await test_driver.click(document.querySelector('select'));
     13  await new Promise(requestAnimationFrame);
     14  document.documentElement.classList.remove('reftest-wait');
     15 })();
     16 </script>