tor-browser

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

contain-paint-formatting-context-margin-001-ref.html (507B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <meta charset="utf-8">
      5  <title>CSS Reftest Test</title>
      6  <link rel="author" title="Kyle Zentner" href="mailto:zentner.kyle@gmail.com">
      7  <style>
      8  #a {
      9      background: blue;
     10      margin: 10px;
     11      width: 50px;
     12      height: 50px;
     13  }
     14  #b {
     15      width: 50px;
     16      height: 40px;
     17      background: green;
     18  }
     19  #b-padding {
     20      height: 10px;
     21  }
     22  </style>
     23 </head>
     24 <body>
     25  <div id="a">
     26    <div id="b-padding"></div>
     27    <div id="b"></div>
     28  </div>
     29 </body>
     30 </html>