tor-browser

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

1086883-1-ref.html (384B)


      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 }
     18 </style>
     19 </head>
     20 
     21 <body>
     22 <div id="outer">
     23  <div id="inner">
     24  </div>
     25 </div>
     26 </body>
     27 
     28 </html>