tor-browser

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

transform-descendant-ref.html (621B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Reftest Reference</title>
      5    <link rel="author" title="Clint Talbert" href="mailto:ctalbert@mozilla.com">
      6    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
      7    <style>
      8      body > div {
      9        background: green;
     10        height: 100px;
     11        width: 100px;
     12      }
     13      span {
     14        background: yellow;
     15      }
     16      body > div > div {
     17        position: relative;
     18        top: 150px;
     19        left: 20px;
     20      }
     21    </style>
     22  </head>
     23  <body>
     24    <div>
     25      <div><span>span 1</span></div>
     26    </div>
     27    <span>span 2</span>
     28  </body>
     29 </html>