transform3d-perspective-008.html (787B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): Perspective on Table</title> 5 <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> 6 <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#perspective-property"> 7 <meta name="assert" content="This tests that perspective on a table only 8 affects its children, not the table itself. It's motivated by a real-world 9 implementation bug: <https://bugzilla.mozilla.org/show_bug.cgi?id=726601>."> 10 <link rel="match" href="transform-lime-square-ref.html"> 11 </head> 12 <body> 13 <div style="height: 100px; width: 100px; background: lime; 14 transform: rotatex(45deg) scaley(1.41421356); transform-origin: top; 15 display: table; perspective: 1000px"> 16 </div> 17 </body> 18 </html>