Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(330)

Unified Diff: third_party/WebKit/LayoutTests/svg/animations/script-tests/animateTransform-translate-attributetype-auto.js

Issue 1406303007: Drop SVGGraphicsElement.getTransformToElement (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/svg/animations/script-tests/animateTransform-translate-attributetype-auto.js
diff --git a/third_party/WebKit/LayoutTests/svg/animations/script-tests/animateTransform-translate-attributetype-auto.js b/third_party/WebKit/LayoutTests/svg/animations/script-tests/animateTransform-translate-attributetype-auto.js
index b0d4e822f80624217b4b2b0ad35111443ee0aa97..696d7bf04b634837723e11a8833429f5b2e4bee9 100644
--- a/third_party/WebKit/LayoutTests/svg/animations/script-tests/animateTransform-translate-attributetype-auto.js
+++ b/third_party/WebKit/LayoutTests/svg/animations/script-tests/animateTransform-translate-attributetype-auto.js
@@ -26,13 +26,13 @@ rootSVGElement.appendChild(rect);
// Setup animation test
function sample1() {
- expectTranslationMatrix("rootSVGElement.getTransformToElement(rect)", "0", "0");
+ expectTranslationMatrix("getTransformToElement(rootSVGElement, rect)", "0", "0");
}
function sample2() {
- expectTranslationMatrix("rootSVGElement.getTransformToElement(rect)", "-100", "-100");
+ expectTranslationMatrix("getTransformToElement(rootSVGElement, rect)", "-100", "-100");
}
function sample3() {
- expectTranslationMatrix("rootSVGElement.getTransformToElement(rect)", "-200", "-200");
+ expectTranslationMatrix("getTransformToElement(rootSVGElement, rect)", "-200", "-200");
}
function executeTest() {

Powered by Google App Engine
This is Rietveld 408576698