tor-browser

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

scroll-buttons-001.html (635B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Test: ::scroll-button()s box creation</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) {
      8    content: "";
      9    background: green;
     10    display: flex;
     11    height: 50px;
     12    width: 100px;
     13    border: none;
     14  }
     15 
     16  div::scroll-button(block-start) {
     17    content: "";
     18    background: green;
     19    display: flex;
     20    height: 50px;
     21    width: 100px;
     22    border: none;
     23  }
     24 </style>
     25 <p>Test passes if there is a <strong>filled green rectangle</strong>.
     26 <div></div>