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

Unified Diff: LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-amplitude-attr.js

Issue 1051183002: This CL is that fixed typo for test-cases. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « no previous file | LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-exponent-attr.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-amplitude-attr.js
diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-amplitude-attr.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-amplitude-attr.js
index fd34981c42a2970339072141dac4c33a5f7c5ab7..04d734392c4eaea085cf0db1cb4bcbd832c13355 100644
--- a/LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-amplitude-attr.js
+++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-amplitude-attr.js
@@ -24,11 +24,11 @@ feAFunc.setAttribute("id", "fb");
feAFunc.setAttribute("type", "gamma");
feAFunc.setAttribute("amplitude", "3");
-var feCompnentTransferElement = createSVGElement("feComponentTransfer");
-feCompnentTransferElement.appendChild(feRFunc);
-feCompnentTransferElement.appendChild(feGFunc);
-feCompnentTransferElement.appendChild(feBFunc);
-feCompnentTransferElement.appendChild(feAFunc);
+var feComponentTransferElement = createSVGElement("feComponentTransfer");
+feComponentTransferElement.appendChild(feRFunc);
+feComponentTransferElement.appendChild(feGFunc);
+feComponentTransferElement.appendChild(feBFunc);
+feComponentTransferElement.appendChild(feAFunc);
var compTranFilter = createSVGElement("filter");
compTranFilter.setAttribute("id", "compTranFilter");
@@ -37,7 +37,7 @@ compTranFilter.setAttribute("x", "0%");
compTranFilter.setAttribute("y", "0%");
compTranFilter.setAttribute("width", "100%");
compTranFilter.setAttribute("height", "100%");
-compTranFilter.appendChild(feCompnentTransferElement);
+compTranFilter.appendChild(feComponentTransferElement);
var defsElement = createSVGElement("defs");
defsElement.appendChild(compTranFilter);
« no previous file with comments | « no previous file | LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-exponent-attr.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698