translate-and-transform-css-property-in-svg-ref.html (549B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Transforms Test: combination of the CSS translate property and SVG transform attribute</title> 5 <link rel="author" title="Antoine Quint" href="mailto:graouts@apple.com"> 6 <meta name="flags" content="svg"> 7 <style type="text/css"> 8 svg { 9 width: 400px; 10 height: 400px; 11 } 12 </style> 13 </head> 14 <body> 15 <p>The test passes if there is a green rectangle and no red.</p> 16 <svg> 17 <rect x="100" y="100" width="200" height="200" fill="green"/> 18 </svg> 19 </body> 20 </html>