perspective-overflow-1-ref.html (388B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Testcase for bug 1483659</title> 6 <style> 7 8 #container { 9 position: absolute; 10 top: 400px; 11 left: 200px; 12 perspective: 100px; 13 } 14 15 #content { 16 width: 300px; 17 height: 300px; 18 background-color: green; 19 transform: rotateY(60deg); 20 } 21 </style> 22 </head> 23 <body> 24 <div id="container"> 25 <div id="content"></div> 26 </div> 27 </body> 28 </html>