transform-interpolation-007.html (702B)
1 <!DOCTYPE html> 2 <meta charset="UTF-8"> 3 <title>transform interpolation</title> 4 <link rel="help" href="https://drafts.csswg.org/css-transforms-1/#matrix-interpolation"> 5 <meta name="assert" content="transform does not interpolate between non-invertible and invertible matrices"> 6 7 <script src="/resources/testharness.js"></script> 8 <script src="/resources/testharnessreport.js"></script> 9 <script src="/css/support/interpolation-testcommon.js"></script> 10 11 <body> 12 <template id="target-template"> 13 <div></div> 14 </template> 15 </body> 16 17 <script> 18 test_no_interpolation({ 19 property: 'transform', 20 from: 'matrix3d(2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1)', 21 to: 'matrix(3, 0, 0, 3, 0, 0)', 22 }); 23 </script>