tor-browser

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

overflow-recalc-001-ref.html (464B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Overflow: Reference Overflow recalc after font-size change</title>
      4 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
      5 <style>
      6 #scroller {
      7  height: 200px;
      8  overflow: scroll;
      9 }
     10 #wrapper {
     11  margin-top: 100px;
     12  width: 200px;
     13  height: 200px;
     14  background: green;
     15 }
     16 </style>
     17 <p>Test passes if there is <strong>no red</strong>.</p>
     18 <div id="scroller">
     19  <div id="wrapper"></div>
     20 </div>