tor-browser

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

1086883-1b.html (412B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>Bug 1086883</title>
      5 <!-- writing mode of #inner div should not affect its position within #outer -->
      6 <style>
      7 #outer {
      8  width:400px;
      9  height:300px;
     10  padding:50px;
     11  border:1px solid black;
     12 }
     13 #inner {
     14  width:200px;
     15  height:100px;
     16  background:red;
     17  writing-mode:vertical-rl;
     18 }
     19 </style>
     20 </head>
     21 
     22 <body>
     23 <div id="outer">
     24  <div id="inner">
     25  </div>
     26 </div>
     27 </body>
     28 
     29 </html>