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

Unified Diff: LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-exponent-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
Index: LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-exponent-attr.js
diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-exponent-attr.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-exponent-attr.js
index a368a87db2df6c91968436a5f6526d6699555a34..70b4e4387661744846c26354e36969e125edb36a 100644
--- a/LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-exponent-attr.js
+++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGFEComponentTransferElement-dom-exponent-attr.js
@@ -20,11 +20,11 @@ var feAFunc = createSVGElement("feFuncA");
feAFunc.setAttribute("type", "gamma");
feAFunc.setAttribute("exponent", "2");
-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");
@@ -33,7 +33,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);

Powered by Google App Engine
This is Rietveld 408576698