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

Unified Diff: LayoutTests/svg/dom/SVGLengthList-replaceItem-expected.txt

Issue 112003003: [SVG] SVGLength{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaselined Created 7 years 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/SVGLengthList-replaceItem-expected.txt
diff --git a/LayoutTests/svg/dom/SVGLengthList-replaceItem-expected.txt b/LayoutTests/svg/dom/SVGLengthList-replaceItem-expected.txt
index da49cc9ee358aa84daf62334710372a83086da69..ca19cc2ace8bb5ef66398c945e4783f2e539f7f6 100644
--- a/LayoutTests/svg/dom/SVGLengthList-replaceItem-expected.txt
+++ b/LayoutTests/svg/dom/SVGLengthList-replaceItem-expected.txt
@@ -22,9 +22,9 @@ PASS text1.x.baseVal.getItem(2).value is 1500
PASS text1.x.baseVal.getItem(3) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
Replace the first three values in text1 x list with 'newLength1/2/3'
-PASS text1.x.baseVal.replaceItem(newLength1, 0) is newLength1
-PASS text1.x.baseVal.replaceItem(newLength2, 1) is newLength2
-PASS text1.x.baseVal.replaceItem(newLength3, 2) is newLength3
+FAIL text1.x.baseVal.replaceItem(newLength1, 0) should be [object SVGLength]. Was [object SVGLength].
+FAIL text1.x.baseVal.replaceItem(newLength2, 1) should be [object SVGLength]. Was [object SVGLength].
+FAIL text1.x.baseVal.replaceItem(newLength3, 2) should be [object SVGLength]. Was [object SVGLength].
PASS text1.x.baseVal.replaceItem(newLength3, -100) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
PASS text1.x.baseVal.replaceItem(newLength3, -1) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
PASS text1.x.baseVal.replaceItem(newLength3, 3) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..

Powered by Google App Engine
This is Rietveld 408576698