tor-browser

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

fieldset-overflow-auto-1-ref.html (1015B)


      1 <!DOCTYPE HTML>
      2 <html><head>
      3    <meta charset="utf-8">
      4    <title>Testcase for bug 261037</title>
      5    <style type="text/css">
      6 fieldset, div { 
      7  background:pink;
      8  overflow:auto;
      9  height:100px;
     10  margin:0; padding:0; border:0;
     11 }
     12 p {
     13  background:blue;
     14  height:100px;
     15  margin:0; padding:0;
     16 }
     17 .overflow {
     18  height:110px;
     19 }
     20 .abs {
     21  position:absolute;
     22  width:100px;
     23  top:250px;
     24 }
     25 p.abs {
     26  top:0;left:0;
     27 }
     28 .b { border:10px solid black; }
     29 .p { padding: 7px 0; }
     30 .p p { height:114px; }
     31    </style>
     32 </head>
     33 <body>
     34 
     35 <div><p></p></div>
     36 <br>
     37 <div><p class="overflow"></p></div>
     38 <br>
     39 <div class="abs"><p class="abs"></p></div>
     40 <br>
     41 <div class="abs" style="left:120px"><p class="abs overflow"></p></div>
     42 <br>
     43 <div class="abs b" style="left:240px"><p class="abs"></p></div>
     44 <br>
     45 <div class="abs b" style="left:370px"><p class="abs overflow"></p></div>
     46 <br>
     47 <div class="abs b p" style="left:510px"><p class="abs"></p></div>
     48 <br>
     49 <div class="abs b p" style="left:640px"><p class="abs overflow"></p></div>
     50 
     51 </body>
     52 </html>