Index: third_party/WebKit/LayoutTests/svg/animations/script-tests/animateMotion-still.js |
diff --git a/third_party/WebKit/LayoutTests/svg/animations/script-tests/animateMotion-fill-freeze.js b/third_party/WebKit/LayoutTests/svg/animations/script-tests/animateMotion-still.js |
similarity index 78% |
copy from third_party/WebKit/LayoutTests/svg/animations/script-tests/animateMotion-fill-freeze.js |
copy to third_party/WebKit/LayoutTests/svg/animations/script-tests/animateMotion-still.js |
index 98c4084719a15998a655d568b2fbc5dd055b789b..e6b9ae9fc9d42ad39a3b94d5476cd3b846faa869 100644 |
--- a/third_party/WebKit/LayoutTests/svg/animations/script-tests/animateMotion-fill-freeze.js |
+++ b/third_party/WebKit/LayoutTests/svg/animations/script-tests/animateMotion-still.js |
@@ -1,21 +1,21 @@ |
-description("Test for animation freeze when repeatDur is not a multiple of dur"); |
-embedSVGTestCase("resources/animateMotion-fill-freeze.svg"); |
+description("Test animations that only express an offset"); |
+embedSVGTestCase("resources/animateMotion-still.svg"); |
// Setup animation test |
function sample1() { |
- shouldBeCloseEnough("rootSVGElement.getBBox().x", "0"); |
+ shouldBeCloseEnough("rootSVGElement.getBBox().x", "100"); |
} |
function sample2() { |
- shouldBeCloseEnough("rootSVGElement.getBBox().x", "50"); |
+ shouldBeCloseEnough("rootSVGElement.getBBox().x", "100"); |
} |
function sample3() { |
- shouldBeCloseEnough("rootSVGElement.getBBox().x", "100"); |
+ shouldBeCloseEnough("rootSVGElement.getBBox().x", "0"); |
} |
function sample4() { |
- shouldBeCloseEnough("rootSVGElement.getBBox().x", "100"); |
+ shouldBeCloseEnough("rootSVGElement.getBBox().x", "0"); |
} |
function executeTest() { |