transforms-rotate-degree-45-ref.html (631B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Transforms Test: transform property with rotate function and one parameter</title> 5 <link rel="reviewer author" title="Dayang Shen" href="mailto:shendayang@baidu.com"> <!-- 2013-09-04 --> 6 <style type="text/css"> 7 svg { 8 position: absolute; 9 top: 0; 10 left: 0; 11 } 12 </style> 13 </head> 14 <body> 15 <p>The test passes if there is a green square and no red.</p> 16 <svg width="300" height="300"> 17 <rect x="100" y="100" width="100" height="100" transform="rotate(45, 150, 150)" style="fill: green"></rect> 18 </svg> 19 </body> 20 </html>