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

Side by Side Diff: LayoutTests/svg/text/svgtextcontentelement-methods-parameters-expected.txt

Issue 1321783002: Throw exceptions for charnum == getNumberOfChars in get{...}OfChar APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
OLDNEW
1 Check that SVGTextContentElement methods' parameters are correctly validated 1 Check that SVGTextContentElement methods' parameters are correctly validated
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS svgText.getSubStringLength() threw exception TypeError: Failed to execute ' getSubStringLength' on 'SVGTextContentElement': 2 arguments required, but only 0 present.. 6 PASS svgText.getSubStringLength() threw exception TypeError: Failed to execute ' getSubStringLength' on 'SVGTextContentElement': 2 arguments required, but only 0 present..
7 PASS svgText.getSubStringLength(2) threw exception TypeError: Failed to execute 'getSubStringLength' on 'SVGTextContentElement': 2 arguments required, but only 1 present.. 7 PASS svgText.getSubStringLength(2) threw exception TypeError: Failed to execute 'getSubStringLength' on 'SVGTextContentElement': 2 arguments required, but only 1 present..
8 PASS svgText.getStartPositionOfChar() threw exception TypeError: Failed to execu te 'getStartPositionOfChar' on 'SVGTextContentElement': 1 argument required, but only 0 present.. 8 PASS svgText.getStartPositionOfChar() threw exception TypeError: Failed to execu te 'getStartPositionOfChar' on 'SVGTextContentElement': 1 argument required, but only 0 present..
9 PASS svgText.getEndPositionOfChar() threw exception TypeError: Failed to execute 'getEndPositionOfChar' on 'SVGTextContentElement': 1 argument required, but onl y 0 present.. 9 PASS svgText.getEndPositionOfChar() threw exception TypeError: Failed to execute 'getEndPositionOfChar' on 'SVGTextContentElement': 1 argument required, but onl y 0 present..
10 PASS svgText.getExtentOfChar() threw exception TypeError: Failed to execute 'get ExtentOfChar' on 'SVGTextContentElement': 1 argument required, but only 0 presen t.. 10 PASS svgText.getExtentOfChar() threw exception TypeError: Failed to execute 'get ExtentOfChar' on 'SVGTextContentElement': 1 argument required, but only 0 presen t..
11 PASS svgText.getRotationOfChar() threw exception TypeError: Failed to execute 'g etRotationOfChar' on 'SVGTextContentElement': 1 argument required, but only 0 pr esent.. 11 PASS svgText.getRotationOfChar() threw exception TypeError: Failed to execute 'g etRotationOfChar' on 'SVGTextContentElement': 1 argument required, but only 0 pr esent..
12 PASS svgText.getCharNumAtPosition() threw exception TypeError: Failed to execute 'getCharNumAtPosition' on 'SVGTextContentElement': 1 argument required, but onl y 0 present.. 12 PASS svgText.getCharNumAtPosition() threw exception TypeError: Failed to execute 'getCharNumAtPosition' on 'SVGTextContentElement': 1 argument required, but onl y 0 present..
13 PASS svgText.getCharNumAtPosition('aString') threw exception TypeError: Failed t o execute 'getCharNumAtPosition' on 'SVGTextContentElement': parameter 1 is not of type 'SVGPoint'.. 13 PASS svgText.getCharNumAtPosition('aString') threw exception TypeError: Failed t o execute 'getCharNumAtPosition' on 'SVGTextContentElement': parameter 1 is not of type 'SVGPoint'..
14 PASS svgText.getCharNumAtPosition(svgText) threw exception TypeError: Failed to execute 'getCharNumAtPosition' on 'SVGTextContentElement': parameter 1 is not of type 'SVGPoint'.. 14 PASS svgText.getCharNumAtPosition(svgText) threw exception TypeError: Failed to execute 'getCharNumAtPosition' on 'SVGTextContentElement': parameter 1 is not of type 'SVGPoint'..
15 PASS svgText.selectSubString() threw exception TypeError: Failed to execute 'sel ectSubString' on 'SVGTextContentElement': 2 arguments required, but only 0 prese nt.. 15 PASS svgText.selectSubString() threw exception TypeError: Failed to execute 'sel ectSubString' on 'SVGTextContentElement': 2 arguments required, but only 0 prese nt..
16 PASS svgText.selectSubString(2) threw exception TypeError: Failed to execute 'se lectSubString' on 'SVGTextContentElement': 2 arguments required, but only 1 pres ent.. 16 PASS svgText.selectSubString(2) threw exception TypeError: Failed to execute 'se lectSubString' on 'SVGTextContentElement': 2 arguments required, but only 1 pres ent..
17 PASS svgText.getSubStringLength(999, 2) threw exception IndexSizeError: Failed t o execute 'getSubStringLength' on 'SVGTextContentElement': The charnum provided (999) is greater than the maximum bound (7).. 17 PASS svgText.getSubStringLength(999, 2) threw exception IndexSizeError: Failed t o execute 'getSubStringLength' on 'SVGTextContentElement': The charnum provided (999) is greater than the maximum bound (7)..
18 PASS svgText.getStartPositionOfChar(999) threw exception IndexSizeError: Failed to execute 'getStartPositionOfChar' on 'SVGTextContentElement': The charnum prov ided (999) is greater than the maximum bound (7).. 18 PASS svgText.getStartPositionOfChar(999) threw exception IndexSizeError: Failed to execute 'getStartPositionOfChar' on 'SVGTextContentElement': The charnum prov ided (999) is greater than the maximum bound (7)..
19 PASS svgText.getEndPositionOfChar(999) threw exception IndexSizeError: Failed to execute 'getEndPositionOfChar' on 'SVGTextContentElement': The charnum provided (999) is greater than the maximum bound (7).. 19 PASS svgText.getEndPositionOfChar(999) threw exception IndexSizeError: Failed to execute 'getEndPositionOfChar' on 'SVGTextContentElement': The charnum provided (999) is greater than the maximum bound (7)..
20 PASS svgText.getExtentOfChar(999) threw exception IndexSizeError: Failed to exec ute 'getExtentOfChar' on 'SVGTextContentElement': The charnum provided (999) is greater than the maximum bound (7).. 20 PASS svgText.getExtentOfChar(999) threw exception IndexSizeError: Failed to exec ute 'getExtentOfChar' on 'SVGTextContentElement': The charnum provided (999) is greater than the maximum bound (7)..
21 PASS svgText.getRotationOfChar(999) threw exception IndexSizeError: Failed to ex ecute 'getRotationOfChar' on 'SVGTextContentElement': The charnum provided (999) is greater than the maximum bound (7).. 21 PASS svgText.getRotationOfChar(999) threw exception IndexSizeError: Failed to ex ecute 'getRotationOfChar' on 'SVGTextContentElement': The charnum provided (999) is greater than the maximum bound (7)..
22 PASS svgText.selectSubString(999, 2) threw exception IndexSizeError: Failed to e xecute 'selectSubString' on 'SVGTextContentElement': The charnum provided (999) is greater than the maximum bound (7).. 22 PASS svgText.selectSubString(999, 2) threw exception IndexSizeError: Failed to e xecute 'selectSubString' on 'SVGTextContentElement': The charnum provided (999) is greater than the maximum bound (7)..
23 PASS svgText.getSubStringLength(7, 2) threw exception IndexSizeError: Failed to execute 'getSubStringLength' on 'SVGTextContentElement': The charnum provided (7 ) is greater than or equal to the maximum bound (7)..
24 PASS svgText.getStartPositionOfChar(7) threw exception IndexSizeError: Failed to execute 'getStartPositionOfChar' on 'SVGTextContentElement': The charnum provid ed (7) is greater than or equal to the maximum bound (7)..
25 PASS svgText.getEndPositionOfChar(7) threw exception IndexSizeError: Failed to e xecute 'getEndPositionOfChar' on 'SVGTextContentElement': The charnum provided ( 7) is greater than or equal to the maximum bound (7)..
26 PASS svgText.getExtentOfChar(7) threw exception IndexSizeError: Failed to execut e 'getExtentOfChar' on 'SVGTextContentElement': The charnum provided (7) is grea ter than or equal to the maximum bound (7)..
27 PASS svgText.getRotationOfChar(7) threw exception IndexSizeError: Failed to exec ute 'getRotationOfChar' on 'SVGTextContentElement': The charnum provided (7) is greater than or equal to the maximum bound (7)..
28 PASS svgText.selectSubString(7, 2) threw exception IndexSizeError: Failed to exe cute 'selectSubString' on 'SVGTextContentElement': The charnum provided (7) is g reater than or equal to the maximum bound (7)..
29 PASS emptySvgText.getSubStringLength(0, 2) threw exception IndexSizeError: Faile d to execute 'getSubStringLength' on 'SVGTextContentElement': The charnum provid ed (0) is greater than or equal to the maximum bound (0)..
30 PASS emptySvgText.getStartPositionOfChar(0) threw exception IndexSizeError: Fail ed to execute 'getStartPositionOfChar' on 'SVGTextContentElement': The charnum p rovided (0) is greater than or equal to the maximum bound (0)..
31 PASS emptySvgText.getEndPositionOfChar(0) threw exception IndexSizeError: Failed to execute 'getEndPositionOfChar' on 'SVGTextContentElement': The charnum provi ded (0) is greater than or equal to the maximum bound (0)..
32 PASS emptySvgText.getExtentOfChar(0) threw exception IndexSizeError: Failed to e xecute 'getExtentOfChar' on 'SVGTextContentElement': The charnum provided (0) is greater than or equal to the maximum bound (0)..
33 PASS emptySvgText.getRotationOfChar(0) threw exception IndexSizeError: Failed to execute 'getRotationOfChar' on 'SVGTextContentElement': The charnum provided (0 ) is greater than or equal to the maximum bound (0)..
34 PASS emptySvgText.selectSubString(0, 2) threw exception IndexSizeError: Failed t o execute 'selectSubString' on 'SVGTextContentElement': The charnum provided (0) is greater than or equal to the maximum bound (0)..
23 PASS svgText.getSubStringLength(-4294967294, 2) is svgText.getSubStringLength(2, 2) 35 PASS svgText.getSubStringLength(-4294967294, 2) is svgText.getSubStringLength(2, 2)
24 PASS actualTestPoint.x is expectedTestPoint.x 36 PASS actualTestPoint.x is expectedTestPoint.x
25 PASS actualTestPoint.y is expectedTestPoint.y 37 PASS actualTestPoint.y is expectedTestPoint.y
26 PASS actualTestPoint.x is expectedTestPoint.x 38 PASS actualTestPoint.x is expectedTestPoint.x
27 PASS actualTestPoint.y is expectedTestPoint.y 39 PASS actualTestPoint.y is expectedTestPoint.y
28 PASS actualTestRect.x is expectedTestRect.x 40 PASS actualTestRect.x is expectedTestRect.x
29 PASS actualTestRect.y is expectedTestRect.y 41 PASS actualTestRect.y is expectedTestRect.y
30 PASS actualTestRect.width is expectedTestRect.width 42 PASS actualTestRect.width is expectedTestRect.width
31 PASS actualTestRect.height is expectedTestRect.height 43 PASS actualTestRect.height is expectedTestRect.height
32 PASS svgText.getRotationOfChar(-4294967294) is svgText.getRotationOfChar(2) 44 PASS svgText.getRotationOfChar(-4294967294) is svgText.getRotationOfChar(2)
33 PASS svgText.selectSubString(-4294967294, 2) did not throw exception. 45 PASS svgText.selectSubString(-4294967294, 2) did not throw exception.
34 PASS svgText.getSubStringLength(-1, 2) threw exception IndexSizeError: Failed to execute 'getSubStringLength' on 'SVGTextContentElement': The charnum provided ( 4294967295) is greater than the maximum bound (7).. 46 PASS svgText.getSubStringLength(-1, 2) threw exception IndexSizeError: Failed to execute 'getSubStringLength' on 'SVGTextContentElement': The charnum provided ( 4294967295) is greater than the maximum bound (7)..
35 PASS svgText.getStartPositionOfChar(-1) threw exception IndexSizeError: Failed t o execute 'getStartPositionOfChar' on 'SVGTextContentElement': The charnum provi ded (4294967295) is greater than the maximum bound (7).. 47 PASS svgText.getStartPositionOfChar(-1) threw exception IndexSizeError: Failed t o execute 'getStartPositionOfChar' on 'SVGTextContentElement': The charnum provi ded (4294967295) is greater than the maximum bound (7)..
36 PASS svgText.getEndPositionOfChar(-1) threw exception IndexSizeError: Failed to execute 'getEndPositionOfChar' on 'SVGTextContentElement': The charnum provided (4294967295) is greater than the maximum bound (7).. 48 PASS svgText.getEndPositionOfChar(-1) threw exception IndexSizeError: Failed to execute 'getEndPositionOfChar' on 'SVGTextContentElement': The charnum provided (4294967295) is greater than the maximum bound (7)..
37 PASS svgText.getExtentOfChar(-1) threw exception IndexSizeError: Failed to execu te 'getExtentOfChar' on 'SVGTextContentElement': The charnum provided (429496729 5) is greater than the maximum bound (7).. 49 PASS svgText.getExtentOfChar(-1) threw exception IndexSizeError: Failed to execu te 'getExtentOfChar' on 'SVGTextContentElement': The charnum provided (429496729 5) is greater than the maximum bound (7)..
38 PASS svgText.getRotationOfChar(-1) threw exception IndexSizeError: Failed to exe cute 'getRotationOfChar' on 'SVGTextContentElement': The charnum provided (42949 67295) is greater than the maximum bound (7).. 50 PASS svgText.getRotationOfChar(-1) threw exception IndexSizeError: Failed to exe cute 'getRotationOfChar' on 'SVGTextContentElement': The charnum provided (42949 67295) is greater than the maximum bound (7)..
39 PASS svgText.selectSubString(-1, 2) threw exception IndexSizeError: Failed to ex ecute 'selectSubString' on 'SVGTextContentElement': The charnum provided (429496 7295) is greater than the maximum bound (7).. 51 PASS svgText.selectSubString(-1, 2) threw exception IndexSizeError: Failed to ex ecute 'selectSubString' on 'SVGTextContentElement': The charnum provided (429496 7295) is greater than the maximum bound (7)..
40 PASS svgText.getSubStringLength(2, 999) is svgText.getSubStringLength(2, 5) 52 PASS svgText.getSubStringLength(2, 999) is svgText.getSubStringLength(2, 5)
41 PASS svgText.getSubStringLength(2, -1) is svgText.getSubStringLength(2, 5) 53 PASS svgText.getSubStringLength(2, -1) is svgText.getSubStringLength(2, 5)
42 PASS svgText.getSubStringLength(2, 2) is svgText.getSubStringLength(2, -42949672 94) 54 PASS svgText.getSubStringLength(2, 2) is svgText.getSubStringLength(2, -42949672 94)
43 PASS svgText.selectSubString(2, 999) did not throw exception. 55 PASS svgText.selectSubString(2, 999) did not throw exception.
44 PASS svgText.selectSubString(2, -1) did not throw exception. 56 PASS svgText.selectSubString(2, -1) did not throw exception.
45 PASS svgText.selectSubString(2, -4294967294) did not throw exception. 57 PASS svgText.selectSubString(2, -4294967294) did not throw exception.
46 PASS successfullyParsed is true 58 PASS successfullyParsed is true
47 59
48 TEST COMPLETE 60 TEST COMPLETE
49 abcdefg 61 abcdefg
62
OLDNEW
« no previous file with comments | « LayoutTests/svg/text/svgtextcontentelement-methods-parameters.html ('k') | Source/core/svg/SVGTextContentElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698