tor-browser

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

transform-matrix-008-notref.html (557B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Reftest Reference</title>
      5    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
      6    <style>
      7      div {
      8        height: 100px;
      9        width: 100px;
     10      }
     11      body > div {
     12        transform: matrix(1, 0, 0, 1, 50, 0);
     13      }
     14      body > div > div {
     15        transform: matrix(1, 0, 0, 1, 50, 0);
     16      }
     17      body > div > div > div {
     18        background: blue;
     19      }
     20    </style>
     21  </head>
     22  <body>
     23    <div>
     24      <div>
     25        <div></div>
     26      </div>
     27    </div>
     28  </body>
     29 </html>