css-transform-3d-rotateZ-ref.html (494B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Transforms Test: rotate3d on div element</title> 6 <link rel="author" title="Intel" href="http://www.intel.com"> 7 <style> 8 div { 9 background-color: green; 10 height: 100px; 11 left: 80px; 12 position: absolute; 13 top: 80px; 14 width: 100px; 15 } 16 </style> 17 </head> 18 <body> 19 <p>Test passes if there is a green square and no red.</p> 20 <div></div> 21 </body> 22 </html>