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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/dom/SVGLengthList-getItem-expected.txt

Issue 2340733002: Convert LayoutTests/svg/dom/SVGLengthList*.html js-tests.js to testharness.js based tests (Closed)
Patch Set: Align with review comments 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/svg/dom/SVGLengthList-getItem.xhtml ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 ABC
2 This is a test of the SVGLengthList::getItem() API.
3
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
5
6
7 Check lengths of text x item lists
8 PASS text1.x.baseVal.numberOfItems is 3
9
10 Test with various index parameters
11 PASS text1.x.baseVal.getItem(-100) threw exception IndexSizeError: Failed to exe cute 'getItem' on 'SVGLengthList': The index provided (4294967196) is greater th an the maximum bound (3)..
12 PASS text1.x.baseVal.getItem(-1) threw exception IndexSizeError: Failed to execu te 'getItem' on 'SVGLengthList': The index provided (4294967295) is greater than the maximum bound (3)..
13 PASS text1.x.baseVal.getItem(0).value is 50
14 PASS text1.x.baseVal.getItem(1).value is 100
15 PASS text1.x.baseVal.getItem(2).value is 150
16 PASS text1.x.baseVal.getItem(3) threw exception IndexSizeError: Failed to execut e 'getItem' on 'SVGLengthList': The index provided (3) is greater than or equal to the maximum bound (3)..
17 PASS text1.x.baseVal.getItem(100) threw exception IndexSizeError: Failed to exec ute 'getItem' on 'SVGLengthList': The index provided (100) is greater than the m aximum bound (3)..
18 PASS successfullyParsed is true
19
20 TEST COMPLETE
21
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/svg/dom/SVGLengthList-getItem.xhtml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698