transform3d-scale-007.html (929B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): rotateX(180deg) scaleZ(-1)</title> 5 <link rel="author" title="Matt Woodrow" href="mailto:mwoodrow@mozilla.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-2/#three-d-transform-functions"> 8 <meta name="assert" content="This tests that rotateX(180deg) scaleZ(-1) is 9 the same as scaleY(-1). (The scaleZ(-1) should have no effect here.)"> 10 <link rel="match" href="transform3d-scale-007-ref.html"> 11 <link rel="mismatch" href="transform3d-scale-001-notref.html"> 12 </head> 13 <body> 14 <div style="transform: rotatex(180deg) scaleZ(-1); width: 100px; height: 100px;"> 15 <div style="background: blue; width: 50px; height: 50px;"></div> 16 <div style="background: lime; width: 50px; height: 50px; margin-left: 50px;"></div> 17 </div> 18 </body> 19 </html>