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

Unified Diff: LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGGradientElement-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/SVGAnimatedEnumeration-SVGGradientElement-expected.txt
diff --git a/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGGradientElement-expected.txt b/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGGradientElement-expected.txt
index 6baa980d83bdf1aa83692fb3165dde4e493dc0d6..372e41a507d64831ecd5643a5f865c62d787491e 100644
--- a/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGGradientElement-expected.txt
+++ b/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGGradientElement-expected.txt
@@ -15,13 +15,13 @@ PASS gradientElement.gradientUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTB
PASS gradientElement.getAttribute('gradientUnits') is "objectBoundingBox"
Try setting invalid values
-PASS gradientElement.gradientUnits.baseVal = 3 threw exception Error: SVG_INVALID_VALUE_ERR: DOM SVG Exception 1.
+PASS gradientElement.gradientUnits.baseVal = 3 threw exception SVG_INVALID_VALUE_ERR: An invalid value was passed to an operation or assigned to an attribute..
PASS gradientElement.gradientUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX
PASS gradientElement.getAttribute('gradientUnits') is "objectBoundingBox"
-PASS gradientElement.gradientUnits.baseVal = -1 threw exception Error: SVG_INVALID_VALUE_ERR: DOM SVG Exception 1.
+PASS gradientElement.gradientUnits.baseVal = -1 threw exception SVG_INVALID_VALUE_ERR: An invalid value was passed to an operation or assigned to an attribute..
PASS gradientElement.gradientUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX
PASS gradientElement.getAttribute('gradientUnits') is "objectBoundingBox"
-PASS gradientElement.gradientUnits.baseVal = 0 threw exception Error: SVG_INVALID_VALUE_ERR: DOM SVG Exception 1.
+PASS gradientElement.gradientUnits.baseVal = 0 threw exception SVG_INVALID_VALUE_ERR: An invalid value was passed to an operation or assigned to an attribute..
PASS gradientElement.gradientUnits.baseVal is SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX
PASS gradientElement.getAttribute('gradientUnits') is "objectBoundingBox"
@@ -46,13 +46,13 @@ PASS gradientElement.spreadMethod.baseVal is SVGGradientElement.SVG_SPREADMETHOD
PASS gradientElement.getAttribute('spreadMethod') is "repeat"
Try setting invalid values
-PASS gradientElement.spreadMethod.baseVal = 4 threw exception Error: SVG_INVALID_VALUE_ERR: DOM SVG Exception 1.
+PASS gradientElement.spreadMethod.baseVal = 4 threw exception SVG_INVALID_VALUE_ERR: An invalid value was passed to an operation or assigned to an attribute..
PASS gradientElement.spreadMethod.baseVal is SVGGradientElement.SVG_SPREADMETHOD_REPEAT
PASS gradientElement.getAttribute('spreadMethod') is "repeat"
-PASS gradientElement.spreadMethod.baseVal = -1 threw exception Error: SVG_INVALID_VALUE_ERR: DOM SVG Exception 1.
+PASS gradientElement.spreadMethod.baseVal = -1 threw exception SVG_INVALID_VALUE_ERR: An invalid value was passed to an operation or assigned to an attribute..
PASS gradientElement.spreadMethod.baseVal is SVGGradientElement.SVG_SPREADMETHOD_REPEAT
PASS gradientElement.getAttribute('spreadMethod') is "repeat"
-PASS gradientElement.spreadMethod.baseVal = 0 threw exception Error: SVG_INVALID_VALUE_ERR: DOM SVG Exception 1.
+PASS gradientElement.spreadMethod.baseVal = 0 threw exception SVG_INVALID_VALUE_ERR: An invalid value was passed to an operation or assigned to an attribute..
PASS gradientElement.spreadMethod.baseVal is SVGGradientElement.SVG_SPREADMETHOD_REPEAT
PASS gradientElement.getAttribute('spreadMethod') is "repeat"

Powered by Google App Engine
This is Rietveld 408576698