tor-browser

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

select-only-button-opt-in.html (661B)


      1 <!DOCTYPE html>
      2 <html class=reftest-wait>
      3 <link rel=author href="mailto:jarhar@chromium.org">
      4 <link rel=help href="https://github.com/w3c/csswg-drafts/issues/10440">
      5 <link rel=mismatch href="select-appearance-button-ref.html">
      6 <script src="/resources/testdriver.js"></script>
      7 <script src="/resources/testdriver-vendor.js"></script>
      8 
      9 <style>
     10 select {
     11  appearance: base-select;
     12 }
     13 </style>
     14 
     15 <select>
     16  <option>one</option>
     17  <option>two</option>
     18 </select>
     19 
     20 <script>
     21 (async () => {
     22  await test_driver.click(document.querySelector('select'));
     23  await new Promise(requestAnimationFrame);
     24  document.documentElement.classList.remove('reftest-wait');
     25 })();
     26 </script>