tor-browser

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

select-appearance-font-inheriting-ref.html (695B)


      1 <!DOCTYPE html>
      2 <link rel=stylesheet href="resources/customizable-select-styles.css">
      3 
      4 <div class="customizable-select-button open" popovertarget=popover id=button>
      5  <span class=customizable-select-selectedcontent>one</span>
      6 </div>
      7 <div id=popover popover=auto anchor=button class=customizable-select-popover>
      8  <div class="customizable-select-option selected">one</div>
      9  <div class=customizable-select-option>two</div>
     10 </div>
     11 
     12 <style>
     13 body {
     14  font-style: italic !important;
     15  font-weight: bold !important;
     16  font-stretch: expanded !important;
     17  font-size: 13px !important;
     18  font-family: monospace !important;
     19 }
     20 </style>
     21 
     22 <script>
     23 document.getElementById('popover').showPopover();
     24 </script>