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

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

Issue 16818023: DOMException toString is not correct (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 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/SVGLengthList-getItem-expected.txt
diff --git a/LayoutTests/svg/dom/SVGLengthList-getItem-expected.txt b/LayoutTests/svg/dom/SVGLengthList-getItem-expected.txt
index 70c58bc6a09d91300f1eca1b69803c853cf9a791..1bd1d89ff9c6ca93a6c186ae001089f9f0f74877 100644
--- a/LayoutTests/svg/dom/SVGLengthList-getItem-expected.txt
+++ b/LayoutTests/svg/dom/SVGLengthList-getItem-expected.txt
@@ -8,13 +8,13 @@ Check lengths of text x item lists
PASS text1.x.baseVal.numberOfItems is 3
Test with various index parameters
-PASS text1.x.baseVal.getItem(-100) threw exception Error: IndexSizeError: DOM Exception 1.
-PASS text1.x.baseVal.getItem(-1) threw exception Error: IndexSizeError: DOM Exception 1.
+PASS text1.x.baseVal.getItem(-100) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
+PASS text1.x.baseVal.getItem(-1) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
PASS text1.x.baseVal.getItem(0).value is 50
PASS text1.x.baseVal.getItem(1).value is 100
PASS text1.x.baseVal.getItem(2).value is 150
-PASS text1.x.baseVal.getItem(3) threw exception Error: IndexSizeError: DOM Exception 1.
-PASS text1.x.baseVal.getItem(100) threw exception Error: IndexSizeError: DOM Exception 1.
+PASS text1.x.baseVal.getItem(3) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
+PASS text1.x.baseVal.getItem(100) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
PASS successfullyParsed is true
TEST COMPLETE
« no previous file with comments | « LayoutTests/svg/dom/SVGLengthList-basics-expected.txt ('k') | LayoutTests/svg/dom/SVGLengthList-initialize-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698