transform-background-008.html (963B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): Transform of Background Image (root element background and 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='This is exactly the same as 9 transform-background-007.html, except that the background is specified directly on the 10 root element instead of being specified on the body and propagating to the 11 root.'> 12 <meta name="flags" content="svg"> 13 <link rel="match" href="transform-root-bg-001-ref.html"> 14 <style> 15 html { 16 background: url(support/transform-triangle-left.svg); 17 overflow: hidden; 18 transform: rotate(90deg); 19 transform-origin: 50px 50px; 20 } 21 </style> 22 </head> 23 <body> 24 </body> 25 </html>