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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/dom/SVGNumberList-basics-expected.txt

Issue 2357463002: Consolidate read-only exception throwing for SVG*TearOffs (Closed)
Patch Set: Baseline updates Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 ABC 1 ABC
2 This is a test of the simple SVGNumberList API parts. 2 This is a test of the simple SVGNumberList API parts.
3 3
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
5 5
6 6
7 PASS text1.rotate.baseVal != text1.rotate.animVal is true 7 PASS text1.rotate.baseVal != text1.rotate.animVal is true
8 PASS text1.rotate.baseVal.numberOfItems is 3 8 PASS text1.rotate.baseVal.numberOfItems is 3
9 PASS text1.rotate.animVal.numberOfItems is 3 9 PASS text1.rotate.animVal.numberOfItems is 3
10 10
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 PASS text1.rotate.baseVal.getItem(0).value is 4 130 PASS text1.rotate.baseVal.getItem(0).value is 4
131 PASS text1.getAttribute('rotate') is "4" 131 PASS text1.getAttribute('rotate') is "4"
132 132
133 Test uncommon arguments for appendItem() 133 Test uncommon arguments for appendItem()
134 PASS text1.rotate.baseVal.appendItem(30) threw exception TypeError: Failed to ex ecute 'appendItem' on 'SVGNumberList': parameter 1 is not of type 'SVGNumber'.. 134 PASS text1.rotate.baseVal.appendItem(30) threw exception TypeError: Failed to ex ecute 'appendItem' on 'SVGNumberList': parameter 1 is not of type 'SVGNumber'..
135 PASS text1.rotate.baseVal.appendItem('aString') threw exception TypeError: Faile d to execute 'appendItem' on 'SVGNumberList': parameter 1 is not of type 'SVGNum ber'.. 135 PASS text1.rotate.baseVal.appendItem('aString') threw exception TypeError: Faile d to execute 'appendItem' on 'SVGNumberList': parameter 1 is not of type 'SVGNum ber'..
136 PASS text1.rotate.baseVal.appendItem(text1) threw exception TypeError: Failed to execute 'appendItem' on 'SVGNumberList': parameter 1 is not of type 'SVGNumber' .. 136 PASS text1.rotate.baseVal.appendItem(text1) threw exception TypeError: Failed to execute 'appendItem' on 'SVGNumberList': parameter 1 is not of type 'SVGNumber' ..
137 PASS text1.rotate.baseVal.appendItem(null) threw exception TypeError: Failed to execute 'appendItem' on 'SVGNumberList': parameter 1 is not of type 'SVGNumber'. . 137 PASS text1.rotate.baseVal.appendItem(null) threw exception TypeError: Failed to execute 'appendItem' on 'SVGNumberList': parameter 1 is not of type 'SVGNumber'. .
138 138
139 Testing animVal clear throws 139 Testing animVal clear throws
140 PASS text1.rotate.animVal.clear() threw exception NoModificationAllowedError: Fa iled to execute 'clear' on 'SVGNumberList': The object is read-only.. 140 PASS text1.rotate.animVal.clear() threw exception NoModificationAllowedError: Fa iled to execute 'clear' on 'SVGNumberList': This object is read-only..
141 PASS text1.rotate.baseVal.clear() is undefined. 141 PASS text1.rotate.baseVal.clear() is undefined.
142 PASS successfullyParsed is true 142 PASS successfullyParsed is true
143 143
144 TEST COMPLETE 144 TEST COMPLETE
145 145
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698