tor-browser

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

scroll-buttons-003.html (568B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Test: ::scroll-button()s box creation with ::scroll-button(*)</title>
      4 <link rel="match" href="scroll-buttons-001-ref.html">
      5 <link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-buttons">
      6 <style>
      7  div::scroll-button(block-end), div::scroll-button(block-start) {
      8    content: "";
      9  }
     10  div::scroll-button(*) {
     11    background: green;
     12    display: flex;
     13    height: 50px;
     14    width: 100px;
     15    border: none;
     16  }
     17 </style>
     18 <p>Test passes if there is a <strong>filled green rectangle</strong>.
     19 <div></div>