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

Unified Diff: LayoutTests/svg/dom/SVGLength-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
« no previous file with comments | « LayoutTests/svg/dom/SVGColor-expected.txt ('k') | LayoutTests/svg/dom/SVGLength-px-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/dom/SVGLength-expected.txt
diff --git a/LayoutTests/svg/dom/SVGLength-expected.txt b/LayoutTests/svg/dom/SVGLength-expected.txt
index da2d7ecf14a18f04b9f3022c52bec8528a0140ec..48d4f6693032f5231d853def07bc6e1514c16454 100644
--- a/LayoutTests/svg/dom/SVGLength-expected.txt
+++ b/LayoutTests/svg/dom/SVGLength-expected.txt
@@ -17,12 +17,12 @@ PASS length.valueInSpecifiedUnits is 2
PASS length.valueAsString is "2px"
Check invalid arguments for 'convertToSpecifiedUnits'
-PASS length.convertToSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_UNKNOWN) threw exception Error: NotSupportedError: DOM Exception 9.
-PASS length.convertToSpecifiedUnits(-1) threw exception Error: NotSupportedError: DOM Exception 9.
-PASS length.convertToSpecifiedUnits(11) threw exception Error: NotSupportedError: DOM Exception 9.
-PASS length.convertToSpecifiedUnits('aString') threw exception Error: NotSupportedError: DOM Exception 9.
-PASS length.convertToSpecifiedUnits(length) threw exception Error: NotSupportedError: DOM Exception 9.
-PASS length.convertToSpecifiedUnits(svgElement) threw exception Error: NotSupportedError: DOM Exception 9.
+PASS length.convertToSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_UNKNOWN) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
+PASS length.convertToSpecifiedUnits(-1) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
+PASS length.convertToSpecifiedUnits(11) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
+PASS length.convertToSpecifiedUnits('aString') threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
+PASS length.convertToSpecifiedUnits(length) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
+PASS length.convertToSpecifiedUnits(svgElement) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS length.convertToSpecifiedUnits() threw exception TypeError: Not enough arguments.
PASS length.unitType is SVGLength.SVG_LENGTHTYPE_PX
PASS length.value is 2
@@ -30,9 +30,9 @@ PASS length.valueInSpecifiedUnits is 2
PASS length.unitType is SVGLength.SVG_LENGTHTYPE_PX
Check invalid arguments for 'newValueSpecifiedUnits'
-PASS length.newValueSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_UNKNOWN, 4) threw exception Error: NotSupportedError: DOM Exception 9.
-PASS length.newValueSpecifiedUnits(-1, 4) threw exception Error: NotSupportedError: DOM Exception 9.
-PASS length.newValueSpecifiedUnits(11, 4) threw exception Error: NotSupportedError: DOM Exception 9.
+PASS length.newValueSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_UNKNOWN, 4) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
+PASS length.newValueSpecifiedUnits(-1, 4) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
+PASS length.newValueSpecifiedUnits(11, 4) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS length.newValueSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_PX, 'aString') is undefined.
PASS length.value is NaN
PASS length.newValueSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_PX, 0) is undefined.
@@ -42,12 +42,12 @@ PASS length.newValueSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_PX, 0) is undefined.
PASS length.newValueSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_PX, svgElement) is undefined.
PASS length.value is NaN
PASS length.newValueSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_PX) threw exception TypeError: Not enough arguments.
-PASS length.newValueSpecifiedUnits('aString', 4) threw exception Error: NotSupportedError: DOM Exception 9.
-PASS length.newValueSpecifiedUnits(length, 4) threw exception Error: NotSupportedError: DOM Exception 9.
-PASS length.newValueSpecifiedUnits(svgElement, 4) threw exception Error: NotSupportedError: DOM Exception 9.
-PASS length.newValueSpecifiedUnits('aString', 'aString') threw exception Error: NotSupportedError: DOM Exception 9.
-PASS length.newValueSpecifiedUnits(length, length) threw exception Error: NotSupportedError: DOM Exception 9.
-PASS length.newValueSpecifiedUnits(svgElement, svgElement) threw exception Error: NotSupportedError: DOM Exception 9.
+PASS length.newValueSpecifiedUnits('aString', 4) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
+PASS length.newValueSpecifiedUnits(length, 4) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
+PASS length.newValueSpecifiedUnits(svgElement, 4) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
+PASS length.newValueSpecifiedUnits('aString', 'aString') threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
+PASS length.newValueSpecifiedUnits(length, length) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
+PASS length.newValueSpecifiedUnits(svgElement, svgElement) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS length.unitType is SVGLength.SVG_LENGTHTYPE_PX
PASS length.value is 2
PASS length.valueInSpecifiedUnits is 2
« no previous file with comments | « LayoutTests/svg/dom/SVGColor-expected.txt ('k') | LayoutTests/svg/dom/SVGLength-px-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698