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

Unified Diff: third_party/WebKit/LayoutTests/svg/dom/SVGViewSpec-defaults-expected.txt

Issue 2357463002: Consolidate read-only exception throwing for SVG*TearOffs (Closed)
Patch Set: Baseline updates Created 4 years, 3 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: third_party/WebKit/LayoutTests/svg/dom/SVGViewSpec-defaults-expected.txt
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGViewSpec-defaults-expected.txt b/third_party/WebKit/LayoutTests/svg/dom/SVGViewSpec-defaults-expected.txt
index 3fc0c4e00092a66f18d95adc2a24f734d09f069d..76e4a8917516597e474186455170273f5fd0cc47 100644
--- a/third_party/WebKit/LayoutTests/svg/dom/SVGViewSpec-defaults-expected.txt
+++ b/third_party/WebKit/LayoutTests/svg/dom/SVGViewSpec-defaults-expected.txt
@@ -26,13 +26,13 @@ PASS currentView.zoomAndPan = SVGViewElement.SVG_ZOOMANDPAN_DISABLE threw except
PASS currentView.zoomAndPan is SVGViewElement.SVG_ZOOMANDPAN_MAGNIFY
Try changing viewBox - this has no affect on the SVGSVGElement the viewSpec belongs to - it exposed all its properties as read-only
-PASS currentView.viewBox.baseVal.x = 10 threw exception NoModificationAllowedError: Failed to set the 'x' property on 'SVGRect': The attribute is read-only..
+PASS currentView.viewBox.baseVal.x = 10 threw exception NoModificationAllowedError: Failed to set the 'x' property on 'SVGRect': This object is read-only..
PASS currentView.viewBox.baseVal.x is 0
-PASS currentView.viewBox.baseVal.y = 20 threw exception NoModificationAllowedError: Failed to set the 'y' property on 'SVGRect': The attribute is read-only..
+PASS currentView.viewBox.baseVal.y = 20 threw exception NoModificationAllowedError: Failed to set the 'y' property on 'SVGRect': This object is read-only..
PASS currentView.viewBox.baseVal.y is 0
-PASS currentView.viewBox.baseVal.width = 50 threw exception NoModificationAllowedError: Failed to set the 'width' property on 'SVGRect': The attribute is read-only..
+PASS currentView.viewBox.baseVal.width = 50 threw exception NoModificationAllowedError: Failed to set the 'width' property on 'SVGRect': This object is read-only..
PASS currentView.viewBox.baseVal.width is 0
-PASS currentView.viewBox.baseVal.height = 100 threw exception NoModificationAllowedError: Failed to set the 'height' property on 'SVGRect': The attribute is read-only..
+PASS currentView.viewBox.baseVal.height = 100 threw exception NoModificationAllowedError: Failed to set the 'height' property on 'SVGRect': This object is read-only..
PASS currentView.viewBox.baseVal.height is 0
PASS currentView.viewBoxString is "0 0 0 0"
@@ -41,9 +41,9 @@ PASS currentView.viewBoxString = '1 2 3 4' is "1 2 3 4"
PASS currentView.viewBoxString is "0 0 0 0"
Try changing preserveAspectRatio
-PASS currentView.preserveAspectRatio.baseVal.align = SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN threw exception NoModificationAllowedError: Failed to set the 'align' property on 'SVGPreserveAspectRatio': The attribute is read-only..
+PASS currentView.preserveAspectRatio.baseVal.align = SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN threw exception NoModificationAllowedError: Failed to set the 'align' property on 'SVGPreserveAspectRatio': This object is read-only..
PASS currentView.preserveAspectRatio.baseVal.align is SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMIDYMID
-PASS currentView.preserveAspectRatio.baseVal.meetOrSlice = SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE threw exception NoModificationAllowedError: Failed to set the 'meetOrSlice' property on 'SVGPreserveAspectRatio': The attribute is read-only..
+PASS currentView.preserveAspectRatio.baseVal.meetOrSlice = SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE threw exception NoModificationAllowedError: Failed to set the 'meetOrSlice' property on 'SVGPreserveAspectRatio': This object is read-only..
PASS currentView.preserveAspectRatio.baseVal.meetOrSlice is SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET
Try changing preserveAspectRatioString
@@ -63,7 +63,7 @@ PASS currentView.viewTargetString = '#test' is "#test"
PASS currentView.viewTargetString is ""
Try changing transform
-PASS currentView.transform.clear() threw exception NoModificationAllowedError: Failed to execute 'clear' on 'SVGTransformList': The object is read-only..
+PASS currentView.transform.clear() threw exception NoModificationAllowedError: Failed to execute 'clear' on 'SVGTransformList': This object is read-only..
PASS currentView.transform.numberOfItems is 0
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698