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

Unified Diff: LayoutTests/svg/animations/script-tests/svglength-animation-invalid-value-3.js

Issue 302643004: [SVG2] Allow leading and trailing whitespace in svg attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@relax_todouble_wtf
Patch Set: split tests to combat slow xp trybots Created 6 years, 6 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/animations/script-tests/svglength-animation-invalid-value-3.js
diff --git a/LayoutTests/svg/animations/script-tests/svglength-animation-invalid-value-3.js b/LayoutTests/svg/animations/script-tests/svglength-animation-invalid-value-3.js
index 1a7be2bb392a58082e699961e9cf2c765cda615c..cd20f6934879a905af6944c3d477f67e1c56c7b9 100644
--- a/LayoutTests/svg/animations/script-tests/svglength-animation-invalid-value-3.js
+++ b/LayoutTests/svg/animations/script-tests/svglength-animation-invalid-value-3.js
@@ -15,8 +15,8 @@ animate.setAttribute("id", "animation");
animate.setAttribute("attributeName", "width");
animate.setAttribute("begin", "click");
animate.setAttribute("dur", "4s");
-animate.setAttribute("from", "100px ");
-animate.setAttribute("to", "200px ");
+animate.setAttribute("from", "100px ERROR");
+animate.setAttribute("to", "200px ERROR");
rect.appendChild(animate);
rootSVGElement.appendChild(rect);

Powered by Google App Engine
This is Rietveld 408576698