tor-browser

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

transform-background-006.html (1048B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Transform of Background Image (propagated body)</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-property">
      7    <meta name="assert" content="Background images fall within the element's
      8    border box, so they need to be transformed along with it.  In this case the
      9    transform is applied to the body element, but the root element's background
     10    is transparent, so the background is actually on the root element instead
     11    of the body.  Therefore, the transform must not affect the background.">
     12    <meta name="flags" content="svg">
     13    <link rel="match" href="transform-background-ref-2.html">
     14    <link rel="mismatch" href="transform-background-006-notref.html">
     15    <style>
     16      body {
     17        background: url(support/transform-triangle-up.svg);
     18        overflow: hidden;
     19        transform: rotate(90deg);
     20      }
     21    </style>
     22  </head>
     23  <body>
     24  </body>
     25 </html>