tor-browser

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

select-appearance-button-after-span.html (740B)


      1 <!DOCTYPE html>
      2 <html class=reftest-wait>
      3 <meta name=fuzzy content="maxDifference=0-100;totalPixels=0-50">
      4 <link rel=author href="mailto:masonf@chromium.org">
      5 <link rel=match href="select-appearance-button-after-span-ref.html">
      6 <script src="/resources/testdriver.js"></script>
      7 <script src="/resources/testdriver-vendor.js"></script>
      8 <script src="/resources/testdriver-actions.js"></script>
      9 <script src="resources/customizable-select-utils.js"></script>
     10 
     11 <style>
     12 select, ::picker(select) {
     13  appearance: base-select;
     14 }
     15 </style>
     16 
     17 <select>
     18  <span>Hello</span>
     19  <button>Hello <selectedcontent></selectedcontent></button>
     20  <option>option 1</option>
     21  <option>option 2</option>
     22 </select>
     23 
     24 <script>
     25 clickSelectAndCaptureAppearance();
     26 </script>