tor-browser

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

transform3d-perspective-007.html (921B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Perspective on Table Parent</title>
      5    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
      6    <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#perspective-property">
      7    <meta name="assert" content="This tests that tables are correctly affected
      8    by perspective on their parent.  It's motivated by a real-world
      9    implementation bug: <https://bugzilla.mozilla.org/show_bug.cgi?id=726601>.">
     10    <link rel="match" href="transform3d-perspective-001-ref.html">
     11    <link rel="mismatch" href="transform-lime-square-ref.html">
     12  </head>
     13  <body>
     14    <div style="perspective: 1000px; perspective-origin: 50px 50px">
     15      <div style="height: 100px; width: 100px; background: lime;
     16        transform: rotatex(45deg) scaley(1.41421356); transform-origin: top;
     17        display: table">
     18      </div>
     19    </div>
     20  </body>
     21 </html>