tor-browser

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

contain-size-scrollbars-002.html (666B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Containment Test: Size containment scrollbars</title>
      4 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
      5 <link rel="help" href="https://drafts.csswg.org/css-contain-1/#containment-size">
      6 <link rel="match" href="reference/contain-size-scrollbars-001-ref.html">
      7 <meta name=assert content="This test checks that the size of a flexbox container with 'contain: size' includes the scrollbars too.">
      8 <style>
      9 div {
     10  contain: size;
     11  display: inline-flex;
     12  border: solid thick;
     13  overflow: scroll;
     14 }
     15 </style>
     16 <p>This test passes if it has the same output as the reference.</p>
     17 <div>FAIL</div>