tor-browser

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

1243125-1-floats-overflowing.html (997B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>Bug 1243125 testcase</title>
      5  <meta charset="utf-8">
      6  <style type="text/css">
      7  div {
      8    overflow: hidden;
      9    height: 20px;
     10    width: 300px;
     11    background: red;
     12    margin: 8px 0;
     13  }
     14  .h-tb { writing-mode: horizontal-tb; }
     15  .v-lr { writing-mode: vertical-lr; }
     16  .v-rl { writing-mode: vertical-rl; }
     17  span {
     18    float: left;
     19    height: 21px;
     20    width: 301px;
     21    background: green;
     22  }
     23  </style>
     24 </head>
     25 <body>
     26  <p>There should be 9 green bars</p>
     27 
     28  <div class="h-tb"><span class="h-tb"></span></div>
     29  <div class="h-tb"><span class="v-lr"></span></div>
     30  <div class="h-tb"><span class="v-rl"></span></div>
     31 
     32  <div class="v-lr"><span class="h-tb"></span></div>
     33  <div class="v-lr"><span class="v-lr"></span></div>
     34  <div class="v-lr"><span class="v-rl"></span></div>
     35 
     36  <div class="v-rl"><span class="h-tb"></span></div>
     37  <div class="v-rl"><span class="v-lr"></span></div>
     38  <div class="v-rl"><span class="v-rl"></span></div>
     39 </body>
     40 </html>