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

Side by Side Diff: LayoutTests/fast/canvas/linearGradient-infinite-values-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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 This test checks createLinearGradient with infinite values 1 This test checks createLinearGradient with infinite values
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 ctx.createLinearGradient(0, 0, 100, NaN) threw exception Error: NotSupporte dError: DOM Exception 9. 6 PASS ctx.createLinearGradient(0, 0, 100, NaN) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
7 PASS ctx.createLinearGradient(0, 0, 100, Infinity) threw exception Error: NotSup portedError: DOM Exception 9. 7 PASS ctx.createLinearGradient(0, 0, 100, Infinity) threw exception NotSupportedE rror: The implementation did not support the requested type of object or operati on..
8 PASS ctx.createLinearGradient(0, 0, 100, -Infinity) threw exception Error: NotSu pportedError: DOM Exception 9. 8 PASS ctx.createLinearGradient(0, 0, 100, -Infinity) threw exception NotSupported Error: The implementation did not support the requested type of object or operat ion..
9 PASS ctx.createLinearGradient(0, 0, NaN, 100) threw exception Error: NotSupporte dError: DOM Exception 9. 9 PASS ctx.createLinearGradient(0, 0, NaN, 100) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
10 PASS ctx.createLinearGradient(0, 0, Infinity, 100) threw exception Error: NotSup portedError: DOM Exception 9. 10 PASS ctx.createLinearGradient(0, 0, Infinity, 100) threw exception NotSupportedE rror: The implementation did not support the requested type of object or operati on..
11 PASS ctx.createLinearGradient(0, 0, -Infinity, 100) threw exception Error: NotSu pportedError: DOM Exception 9. 11 PASS ctx.createLinearGradient(0, 0, -Infinity, 100) threw exception NotSupported Error: The implementation did not support the requested type of object or operat ion..
12 PASS ctx.createLinearGradient(0, NaN, 100, 100) threw exception Error: NotSuppor tedError: DOM Exception 9. 12 PASS ctx.createLinearGradient(0, NaN, 100, 100) threw exception NotSupportedErro r: The implementation did not support the requested type of object or operation. .
13 PASS ctx.createLinearGradient(0, Infinity, 100, 100) threw exception Error: NotS upportedError: DOM Exception 9. 13 PASS ctx.createLinearGradient(0, Infinity, 100, 100) threw exception NotSupporte dError: The implementation did not support the requested type of object or opera tion..
14 PASS ctx.createLinearGradient(0, -Infinity, 100, 100) threw exception Error: Not SupportedError: DOM Exception 9. 14 PASS ctx.createLinearGradient(0, -Infinity, 100, 100) threw exception NotSupport edError: The implementation did not support the requested type of object or oper ation..
15 PASS ctx.createLinearGradient(NaN, 0, 100, 100) threw exception Error: NotSuppor tedError: DOM Exception 9. 15 PASS ctx.createLinearGradient(NaN, 0, 100, 100) threw exception NotSupportedErro r: The implementation did not support the requested type of object or operation. .
16 PASS ctx.createLinearGradient(Infinity, 0, 100, 100) threw exception Error: NotS upportedError: DOM Exception 9. 16 PASS ctx.createLinearGradient(Infinity, 0, 100, 100) threw exception NotSupporte dError: The implementation did not support the requested type of object or opera tion..
17 PASS ctx.createLinearGradient(-Infinity, 0, 100, 100) threw exception Error: Not SupportedError: DOM Exception 9. 17 PASS ctx.createLinearGradient(-Infinity, 0, 100, 100) threw exception NotSupport edError: The implementation did not support the requested type of object or oper ation..
18 PASS successfullyParsed is true 18 PASS successfullyParsed is true
19 19
20 TEST COMPLETE 20 TEST COMPLETE
21 21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698