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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/filesystem/not-enough-arguments-expected.txt
diff --git a/LayoutTests/fast/filesystem/not-enough-arguments-expected.txt b/LayoutTests/fast/filesystem/not-enough-arguments-expected.txt
index 55c3f3fbca32e18755a1f73ae07aa23063c72fcd..35b6fac63d89077c8135feff507d0b68eae4a294 100644
--- a/LayoutTests/fast/filesystem/not-enough-arguments-expected.txt
+++ b/LayoutTests/fast/filesystem/not-enough-arguments-expected.txt
@@ -3,20 +3,20 @@ This test tries calling various filesystem functions with too few arguments.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-PASS webkitResolveLocalFileSystemURL() threw exception TypeError: Not enough arguments.
-PASS webkitRequestFileSystem() threw exception TypeError: Not enough arguments.
-PASS webkitRequestFileSystem(PERSISTENT) threw exception TypeError: Not enough arguments.
-PASS webkitRequestFileSystem(PERSISTENT, 100) threw exception TypeError: Not enough arguments.
+PASS webkitResolveLocalFileSystemURL() threw exception TypeError: Failed to execute 'webkitResolveLocalFileSystemURL' on 'DOMWindow': 2 arguments required, but only 0 present..
+PASS webkitRequestFileSystem() threw exception TypeError: Failed to execute 'webkitRequestFileSystem' on 'DOMWindow': 3 arguments required, but only 0 present..
+PASS webkitRequestFileSystem(PERSISTENT) threw exception TypeError: Failed to execute 'webkitRequestFileSystem' on 'DOMWindow': 3 arguments required, but only 1 present..
+PASS webkitRequestFileSystem(PERSISTENT, 100) threw exception TypeError: Failed to execute 'webkitRequestFileSystem' on 'DOMWindow': 3 arguments required, but only 2 present..
Successfully obtained Persistent FileSystem:file__0:Temporary
-PASS fileSystem.root.removeRecursively() threw exception TypeError: Not enough arguments.
-PASS fileSystem.root.moveTo() threw exception TypeError: Not enough arguments.
-PASS fileSystem.root.copyTo() threw exception TypeError: Not enough arguments.
-PASS reader.readEntries() threw exception TypeError: Not enough arguments.
-PASS entry.createWriter() threw exception TypeError: Not enough arguments.
-PASS entry.file() threw exception TypeError: Not enough arguments.
-PASS writer.write() threw exception TypeError: Not enough arguments.
-PASS writer.seek() threw exception TypeError: Not enough arguments.
-PASS writer.truncate() threw exception TypeError: Not enough arguments.
+PASS fileSystem.root.removeRecursively() threw exception TypeError: Failed to execute 'removeRecursively' on 'DirectoryEntry': 1 argument required, but only 0 present..
+PASS fileSystem.root.moveTo() threw exception TypeError: Failed to execute 'moveTo' on 'Entry': 1 argument required, but only 0 present..
+PASS fileSystem.root.copyTo() threw exception TypeError: Failed to execute 'copyTo' on 'Entry': 1 argument required, but only 0 present..
+PASS reader.readEntries() threw exception TypeError: Failed to execute 'readEntries' on 'DirectoryReader': 1 argument required, but only 0 present..
+PASS entry.createWriter() threw exception TypeError: Failed to execute 'createWriter' on 'FileEntry': 1 argument required, but only 0 present..
+PASS entry.file() threw exception TypeError: Failed to execute 'file' on 'FileEntry': 1 argument required, but only 0 present..
+PASS writer.write() threw exception TypeError: Failed to execute 'write' on 'FileWriter': 1 argument required, but only 0 present..
+PASS writer.seek() threw exception TypeError: Failed to execute 'seek' on 'FileWriter': 1 argument required, but only 0 present..
+PASS writer.truncate() threw exception TypeError: Failed to execute 'truncate' on 'FileWriter': 1 argument required, but only 0 present..
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698