tor-browser

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

scroll-markers-inside-select-crash.html (281B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="crbug.com/394980089">
      3 <style>
      4  #scroller {
      5    overflow: scroll;
      6    scroll-marker-group: after;
      7  }
      8  #scroller div::scroll-marker {
      9    content: counter(test);
     10  }
     11 </style>
     12 <select>
     13  <div id="scroller">
     14    <div></div>
     15  </div>
     16 </select>