tor-browser

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

orthogonal-floats-1-ref.html (739B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>Bug 1141867 - Contiguous right-floating boxes with vertical writing mode</title>
      5  <!-- based on testcases from Gérard Talbot, see https://bugzilla.mozilla.org/show_bug.cgi?id=1141867 -->
      6  <meta charset="utf-8">
      7  <style type="text/css">
      8  body {
      9    margin: 8px;
     10  }
     11  p {
     12    clear: both;
     13  }
     14  div#dummy {
     15    height: 100px;
     16    float: right;
     17  }
     18  div#reference {
     19    background-color: green;
     20    width: 100px;
     21    height: 100px;
     22    position: absolute;
     23    right: 8px;
     24    top: 8px;
     25    z-index: -1;
     26  }
     27  </style>
     28 </head>
     29 
     30 <body>
     31 
     32  <div id="dummy"></div>
     33 
     34  <div id="reference"></div>
     35 
     36  <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     37 
     38 </body>
     39 </html>