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

Unified Diff: LayoutTests/svg/animations/script-tests/svglength-animation-invalid-value-2.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-2.js
diff --git a/LayoutTests/svg/animations/script-tests/svglength-animation-invalid-value-2.js b/LayoutTests/svg/animations/script-tests/svglength-animation-invalid-value-2.js
index a638ecc673d0d0bcd13a2889a7e021ea0dd06669..8f041bbc47f6e86cccecb7c5d9bb27fcb7fcb0e2 100644
--- a/LayoutTests/svg/animations/script-tests/svglength-animation-invalid-value-2.js
+++ b/LayoutTests/svg/animations/script-tests/svglength-animation-invalid-value-2.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", " 100pxERROR");
+animate.setAttribute("to", " 200pxERROR");
rect.appendChild(animate);
rootSVGElement.appendChild(rect);

Powered by Google App Engine
This is Rietveld 408576698