tor-browser

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

scroll-buttons-appearance.html (595B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Test: ::scroll-button()s appearance</title>
      4 <link rel="match" href="scroll-buttons-appearance-ref.html">
      5 <link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-buttons">
      6 <style>
      7  div::scroll-button(block-start) {
      8    content: "appearance: auto";
      9    /* appearance: auto is the default. */
     10  }
     11  div::scroll-button(block-end) {
     12    content: "appearance: none";
     13    appearance: none;
     14  }
     15 
     16 </style>
     17 <p>Test passes if there are two buttons, the first one using appearance auto
     18 and the second using appearance: none.</p>
     19 <div></div>