tor-browser

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

scroll-buttons-container-query-crash.html (421B)


      1 <!DOCTYPE html>
      2 <title>CSS Overflow Test: ::scroll-button() depending on size container query crash</title>
      3 <link rel="help" href="https://crbug.com/375973472">
      4 <style>
      5  #scroller {
      6    overflow: hidden;
      7    container-type: size;
      8  }
      9  #scroller::scroll-button(right) {
     10    content: ">";
     11  }
     12  @container (width) {
     13    #scroller::scroll-button(right) {
     14      display: block;
     15    }
     16  }
     17 </style>
     18 <div id="scroller"></div>