tor-browser

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

select-appearance-active.html (831B)


      1 <!DOCTYPE html>
      2 <html class=reftest-wait>
      3 <meta name=fuzzy content="maxDifference=0-33;totalPixels=0-1">
      4 <link rel=author href="mailto:jarhar@chromium.org">
      5 <link rel=help href="https://github.com/w3c/csswg-drafts/issues/10909">
      6 <link rel=match href="select-appearance-active-ref.html">
      7 <script src="/resources/testdriver.js"></script>
      8 <script src="/resources/testdriver-vendor.js"></script>
      9 <script src="/resources/testdriver-actions.js"></script>
     10 
     11 <style>
     12 select, ::picker(select) {
     13  appearance: base-select;
     14 }
     15 </style>
     16 
     17 <select>
     18  <option>option</option>
     19 </select>
     20 
     21 <script>
     22 (async () => {
     23  const select = document.querySelector('select');
     24  await (new test_driver.Actions()
     25    .pointerMove(1, 1, {origin: select})
     26    .pointerDown())
     27    .send();
     28  document.documentElement.classList.remove('reftest-wait');
     29 })();
     30 </script>