Index: third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-x-y-interpolation.html |
diff --git a/third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-refX-refY-interpolation.html b/third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-x-y-interpolation.html |
similarity index 83% |
copy from third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-refX-refY-interpolation.html |
copy to third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-x-y-interpolation.html |
index c722c89b394ec4a9418f088e234631f213b700a0..515ff635a725a164af408125da20f40e3d15f1ef 100644 |
--- a/third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-refX-refY-interpolation.html |
+++ b/third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-x-y-interpolation.html |
@@ -2,15 +2,16 @@ |
<html> |
<body> |
<template id="target-template"> |
-<svg width="90" height="90"> |
-<marker class="target" /> |
-</svg> |
+ <svg width="90" height="90"> |
+ <rect class="target"/> |
+ </svg> |
</template> |
<script src="resources/interpolation-test.js"></script> |
<script> |
'use strict'; |
+ |
assertAttributeInterpolation({ |
- property: 'refX', |
+ property: 'x', |
from: '1', |
to: '6' |
}, [ |
@@ -21,8 +22,9 @@ assertAttributeInterpolation({ |
{at: 1, is: 6}, |
{at: 1.4, is: 8} |
]); |
+ |
assertAttributeInterpolation({ |
- property: 'refY', |
+ property: 'y', |
from: '1', |
to: '6' |
}, [ |