tor-browser

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

select-appearance-mixing.html (739B)


      1 <!DOCTYPE html>
      2 <link rel=author href="mailto:jarhar@chromium.org">
      3 <link rel=help href="https://issues.chromium.org/issues/393500003">
      4 <link rel=help href="https://chromium-review.googlesource.com/c/chromium/src/+/7032708/comment/aa4b509b_fec51624/">
      5 <link rel=match href="select-appearance-mixing-ref.html">
      6 
      7 <style>
      8 .custom, .custom::picker(select) {
      9  appearance: base-select;
     10 }
     11 </style>
     12 
     13 <select multiple>
     14  <option>normal</option>
     15  <div style="appearance:base-select">
     16    <option style="appearance:base-select">
     17      <div>div</div>
     18      <span>span</span>
     19      text
     20    </option>
     21  </div>
     22 </select>
     23 
     24 <select multiple class=custom>
     25  <option>normal</option>
     26  <option style="appearance:base-select">base-select</option>
     27 </select>