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