tor-browser

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

scroll-marker-group-010.html (585B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Test: ::scroll-marker-group is not created without scroll container</title>
      4 <link rel="author" href="mailto:sakhapov@chromium.org">
      5 <link rel="match" href="scroll-marker-group-006-ref.html">
      6 <link rel="help" href="https://drafts.csswg.org/css-overflow-5/#scroll-marker-group-pseudo">
      7 <style>
      8  div {
      9    scroll-marker-group: after;
     10  }
     11 
     12  div::scroll-marker-group {
     13    background-color: red;
     14    display: flex;
     15    height: 100px;
     16    width: 100px;
     17  }
     18 </style>
     19 <p>Test passes if there is <strong>no red rectangle</strong>.
     20 <div></div>