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

Side by Side Diff: LayoutTests/fast/filesystem/not-enough-arguments-expected.txt

Issue 24203002: Improve generated "Not enough arguments." TypeError exceptions. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: NeedsRebaseline Created 7 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 This test tries calling various filesystem functions with too few arguments. 1 This test tries calling various filesystem functions with too few arguments.
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 webkitResolveLocalFileSystemURL() threw exception TypeError: Not enough arg uments. 6 PASS webkitResolveLocalFileSystemURL() threw exception TypeError: Failed to exec ute 'webkitResolveLocalFileSystemURL' on 'DOMWindow': 2 arguments required, but only 0 present..
7 PASS webkitRequestFileSystem() threw exception TypeError: Not enough arguments. 7 PASS webkitRequestFileSystem() threw exception TypeError: Failed to execute 'web kitRequestFileSystem' on 'DOMWindow': 3 arguments required, but only 0 present..
8 PASS webkitRequestFileSystem(PERSISTENT) threw exception TypeError: Not enough a rguments. 8 PASS webkitRequestFileSystem(PERSISTENT) threw exception TypeError: Failed to ex ecute 'webkitRequestFileSystem' on 'DOMWindow': 3 arguments required, but only 1 present..
9 PASS webkitRequestFileSystem(PERSISTENT, 100) threw exception TypeError: Not eno ugh arguments. 9 PASS webkitRequestFileSystem(PERSISTENT, 100) threw exception TypeError: Failed to execute 'webkitRequestFileSystem' on 'DOMWindow': 3 arguments required, but o nly 2 present..
10 Successfully obtained Persistent FileSystem:file__0:Temporary 10 Successfully obtained Persistent FileSystem:file__0:Temporary
11 PASS fileSystem.root.removeRecursively() threw exception TypeError: Not enough a rguments. 11 PASS fileSystem.root.removeRecursively() threw exception TypeError: Failed to ex ecute 'removeRecursively' on 'DirectoryEntry': 1 argument required, but only 0 p resent..
12 PASS fileSystem.root.moveTo() threw exception TypeError: Not enough arguments. 12 PASS fileSystem.root.moveTo() threw exception TypeError: Failed to execute 'move To' on 'Entry': 1 argument required, but only 0 present..
13 PASS fileSystem.root.copyTo() threw exception TypeError: Not enough arguments. 13 PASS fileSystem.root.copyTo() threw exception TypeError: Failed to execute 'copy To' on 'Entry': 1 argument required, but only 0 present..
14 PASS reader.readEntries() threw exception TypeError: Not enough arguments. 14 PASS reader.readEntries() threw exception TypeError: Failed to execute 'readEntr ies' on 'DirectoryReader': 1 argument required, but only 0 present..
15 PASS entry.createWriter() threw exception TypeError: Not enough arguments. 15 PASS entry.createWriter() threw exception TypeError: Failed to execute 'createWr iter' on 'FileEntry': 1 argument required, but only 0 present..
16 PASS entry.file() threw exception TypeError: Not enough arguments. 16 PASS entry.file() threw exception TypeError: Failed to execute 'file' on 'FileEn try': 1 argument required, but only 0 present..
17 PASS writer.write() threw exception TypeError: Not enough arguments. 17 PASS writer.write() threw exception TypeError: Failed to execute 'write' on 'Fil eWriter': 1 argument required, but only 0 present..
18 PASS writer.seek() threw exception TypeError: Not enough arguments. 18 PASS writer.seek() threw exception TypeError: Failed to execute 'seek' on 'FileW riter': 1 argument required, but only 0 present..
19 PASS writer.truncate() threw exception TypeError: Not enough arguments. 19 PASS writer.truncate() threw exception TypeError: Failed to execute 'truncate' o n 'FileWriter': 1 argument required, but only 0 present..
20 PASS successfullyParsed is true 20 PASS successfullyParsed is true
21 21
22 TEST COMPLETE 22 TEST COMPLETE
23 23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698