tor-browser

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

select-multiple-covered-by-abspos.html (613B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1770532">
      4 <link rel="author" href="mailto:dholbert@mozilla.com" title="Daniel Holbert">
      5 <link rel="author" href="https://mozilla.org" title="Mozilla">
      6 <link rel="match" href="select-multiple-covered-by-abspos-ref.html">
      7 <title>Combobox selects are not stacking contexts by default</title>
      8 <style>
      9 .abspos {
     10  position: absolute;
     11  background-color: green;
     12  height: 300px;
     13  width: 300px;
     14 }
     15 </style>
     16 <div class="abspos"></div>
     17 <select multiple>
     18  <option>This text shouldn't be visible.</option>
     19 </select>