tor-browser

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

contain-size-009.html (635B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Containment Test: Size containment on table-footer-group</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/pass_if_pass_below_clipped.html">
      7 <meta name=assert content="Size containment doesn't apply to table-footer-group elements.">
      8 <style>
      9 div {
     10  display: table-footer-group;
     11  contain: size;
     12 }
     13 section {
     14  overflow: hidden;
     15 }
     16 </style>
     17 
     18 <p>Test passes if there is the word "PASS" below.</p>
     19 <section>
     20 <div>PASS</div>
     21 </section>