tor-browser

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

transform-background-007.html (909B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Transform of Background Image (propagated body with root element transform)</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-1/#transform-rendering">
      7    <link rel="reviewer" title="Apple Inc." href="http://www.apple.com">
      8    <meta name="assert" content='"If the root element is transformed, the transformation should not apply to
      9    any background specified for the root element.'>
     10    <meta name="flags" content="svg">
     11    <link rel="match" href="transform-root-bg-001-ref.html">
     12    <style>
     13      html {
     14        overflow: hidden;
     15        transform: rotate(90deg);
     16        transform-origin: 50px 50px;
     17      }
     18      body {
     19        background: url(support/transform-triangle-left.svg);
     20      }
     21    </style>
     22  </head>
     23  <body>
     24  </body>
     25 </html>