transform3d-image-scale-001.html (818B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): scale3d() on a Bitmap</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/#three-d-transform-functions"> 7 <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#funcdef-scale3d"> 8 <meta name="assert" content="This tests that applying a simple 3D transform 9 to a bitmap image works properly. This is motivated by a real-world 10 implementation bug: <https://bugzilla.mozilla.org/show_bug.cgi?id=735373>."> 11 <link rel="match" href="transform-lime-square-ref.html"> 12 </head> 13 <body> 14 <img src="support/transform-lime-square.png" height="50" width="50" 15 style="transform: scale3d(2, 2, 2); transform-origin: 0 0"> 16 </body> 17 </html>