| Index: LayoutTests/animations/interpolation/perspective-interpolation.html
 | 
| diff --git a/LayoutTests/animations/interpolation/perspective-interpolation.html b/LayoutTests/animations/interpolation/perspective-interpolation.html
 | 
| index 01feb081c6723600dcfbd918d58737a923aaa506..fdd803cf183077a455719742c678d44ed6dcfb8b 100644
 | 
| --- a/LayoutTests/animations/interpolation/perspective-interpolation.html
 | 
| +++ b/LayoutTests/animations/interpolation/perspective-interpolation.html
 | 
| @@ -41,5 +41,20 @@ assertInterpolation({
 | 
|    {at: 1, is: '100px'},
 | 
|    {at: 1.5, is: '125px'}
 | 
|  ]);
 | 
| +
 | 
| +assertInterpolation({
 | 
| +  property: 'perspective',
 | 
| +  from: '50px',
 | 
| +  to: 'none'
 | 
| +}, [
 | 
| +  {at: -20, is: '50px'},
 | 
| +  {at: -1, is: '50px'},
 | 
| +  {at: -0.3, is: '50px'},
 | 
| +  {at: 0, is: '50px'},
 | 
| +  {at: 0.3, is: '50px'},
 | 
| +  {at: 0.6, is: 'none'},
 | 
| +  {at: 1, is: 'none'},
 | 
| +  {at: 1.5, is: 'none'}
 | 
| +]);
 | 
|  </script>
 | 
|  </body>
 | 
| 
 |