tor-browser

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

css-transforms-3d-on-anonymous-block-001.html (1015B)


      1 <!DOCTYPE html>
      2 <html>
      3 <!-- Submitted from TestTWF Paris -->
      4 <head>
      5    <title>CSS Transforms Test: No 3D transforms on anonymous block boxes</title>
      6    <link rel="author" title="Dirk Schulze" href="mailto:dschulze@adobe.com">
      7    <link rel="reviewer" title="Edward O'Connor" href="mailto:eoconnor@apple.com" /> <!-- 2012-10-27 -->
      8    <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#transform-rendering">
      9    <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#3d-transform-rendering">
     10    <link rel="match" href="reference/css-transforms-3d-anonymous-block-ref.html">
     11    <meta name="assert" content="3D transforms can not be applied to anonymous block boxes.">
     12 </head>
     13 <body>
     14    <p>You should see three lines of text written from left to right and unmirrored.<p>
     15    <div style="transform-style: preserve-3d;">
     16        <span style="transform-style: preserve-3d; transform: rotateX(90deg)">Test</span>
     17        <p style="transform-style: preserve-3d;">Test</p>
     18    </div>
     19 </body>
     20 </html>