tor-browser

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

float-in-rtl-vrl-2d.html (678B)


      1 <!DOCTYPE html>
      2 <html class="vrl">
      3 <head>
      4 <title>Bug 1114329 testcase</title>
      5 <style>
      6 .vrl {
      7   writing-mode: vertical-rl;
      8   -webkit-writing-mode: vertical-rl;
      9   writing-mode: tb-rl;
     10   direction: ltr;
     11 }
     12 </style>
     13 </head>
     14 <body>
     15  <div dir="rtl" style="inline-size:-moz-fit-content">
     16    <div style="height:300px">
     17      <div style="height:100px;width:120px;background:rgba(0,255,0,0.8);float:left;"></div>
     18    </div>
     19    <div style="height:200px">
     20      <div style="height:100px;width:150px;background:rgba(255,0,0,0.8);float:left;"></div>
     21    </div>
     22  </div>
     23  <div style="background:silver">
     24 This text should appear BELOW the green and red blocks.
     25  </div>
     26 </body>
     27 </html>