transform-rotate-001.html (954B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): rotate(45deg) rotate(360deg)</title> 5 <link rel="author" title="Keith Schwarz" href="mailto:keith@keithschwarz.com"> 6 <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> 7 <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions"> 8 <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-transform-rotate"> 9 <meta name="assert" content="This is part of a series of tests that check 10 that various combinations of rotate() with different units are equivalent 11 to rotate(45deg)."> 12 <link rel="match" href="transform-rotate-001-ref.html"> 13 <link rel="mismatch" href="transform-rotate-001-notref.html"> 14 <style> 15 div { 16 transform: rotate(45deg) rotate(360deg); 17 width: 100px; 18 height: 100px; 19 } 20 </style> 21 </head> 22 <body> 23 <div>Test Text</div> 24 </body> 25 </html>