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

Unified Diff: LayoutTests/svg/dom/SVGPathSegList-clear-and-initialize-expected.txt

Issue 1177303004: Updated SVGListPropertyHelper as per SVG2 Spec (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fixed presubmit error Created 5 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/dom/SVGPathSegList-clear-and-initialize-expected.txt
diff --git a/LayoutTests/svg/dom/SVGPathSegList-clear-and-initialize-expected.txt b/LayoutTests/svg/dom/SVGPathSegList-clear-and-initialize-expected.txt
index 20c0f764962984f54bf863ac8633d7b39f086159..82a7038f5682b205042a406bc1b08c113b8d58c1 100644
--- a/LayoutTests/svg/dom/SVGPathSegList-clear-and-initialize-expected.txt
+++ b/LayoutTests/svg/dom/SVGPathSegList-clear-and-initialize-expected.txt
@@ -67,13 +67,16 @@ PASS path1.pathSegList.getItem(0).x is 50
PASS path1.pathSegList.getItem(0).y is 50
Check intermediate list state of path2
-PASS path2.pathSegList.numberOfItems is 2
-PASS path2.pathSegList.getItem(0).toString() is "[object SVGPathSegLinetoAbs]"
-PASS path2.pathSegList.getItem(0).x is 0
-PASS path2.pathSegList.getItem(0).y is 100
-PASS path2.pathSegList.getItem(1).toString() is "[object SVGPathSegMovetoAbs]"
+PASS path2.pathSegList.numberOfItems is 3
+PASS path2.pathSegList.getItem(0).toString() is "[object SVGPathSegMovetoAbs]"
+PASS path2.pathSegList.getItem(0).x is 50
+PASS path2.pathSegList.getItem(0).y is 50
+PASS path2.pathSegList.getItem(1).toString() is "[object SVGPathSegLinetoAbs]"
PASS path2.pathSegList.getItem(1).x is 0
-PASS path2.pathSegList.getItem(1).y is 0
+PASS path2.pathSegList.getItem(1).y is 100
+PASS path2.pathSegList.getItem(2).toString() is "[object SVGPathSegMovetoAbs]"
+PASS path2.pathSegList.getItem(2).x is 0
+PASS path2.pathSegList.getItem(2).y is 0
Initialize path2 list with item0
PASS path2.pathSegList.initialize(item0).toString() is "[object SVGPathSegMovetoAbs]"

Powered by Google App Engine
This is Rietveld 408576698