tor-browser

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

select-appearance-writing-mode-vertical-rl-ref.html (548B)


      1 <!DOCTYPE html>
      2 <link rel=stylesheet href="resources/customizable-select-styles.css">
      3 
      4 <style>
      5 html {
      6  writing-mode: vertical-rl;
      7 }
      8 </style>
      9 
     10 <div class=customizable-select-button popovertarget=popover id=button>
     11  <span class=customizable-select-selectedcontent>one</span>
     12 </div>
     13 <div id=popover popover=auto anchor=button class=customizable-select-popover>
     14  <div class="customizable-select-option selected">one</div>
     15  <div class=customizable-select-option>two</div>
     16 </div>
     17 
     18 <script>
     19 document.getElementById('popover').showPopover();
     20 </script>