tor-browser

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

scroll-marker-group-015.html (672B)


      1 <!DOCTYPE html>
      2 <title>Scroll marker group with initial display type</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-marker-group">
      4 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      5 <style>
      6  #scroller>*::scroll-marker {
      7    float: left;
      8    width: 50px;
      9    height: 50px;
     10    content: "";
     11    background: green;
     12  }
     13 </style>
     14 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     15 <div style="width:100px; height:100px; background:red;">
     16  <div id="scroller" style="overflow:hidden; scroll-marker-group:after;">
     17    <div></div>
     18    <div></div>
     19    <div></div>
     20    <div></div>
     21  </div>
     22 </div>