transform-root-bg-004.html (788B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): scale(-1) On Body With Background</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 <meta name="assert" content="This is like transform-root-bg-002.html, 8 except that the transform is specified on the body element, not just the 9 background. The background gets lifted to the root element, but the 10 transform does not, so the transform has no effect."> 11 <link rel="match" href="transform-root-bg-004-ref.html"> 12 <style> 13 body { 14 background: url(support/transform-triangle-left.svg); 15 transform: scale(-1); 16 } 17 </style> 18 </head> 19 <body> 20 </body> 21 </html>