tor-browser

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

select-appearance-active-ref.html (456B)


      1 <!DOCTYPE html>
      2 <link rel=stylesheet href="resources/customizable-select-styles.css">
      3 
      4 <div class="customizable-select-button active" popovertarget=popover id=button>
      5  <span class=customizable-select-selectedoption>option</span>
      6 </div>
      7 <div id=popover popover=auto anchor=button class=customizable-select-popover>
      8  <div class="customizable-select-option selected">option</div>
      9 </div>
     10 
     11 <script>
     12 document.getElementById('popover').showPopover();
     13 </script>