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

Unified Diff: LayoutTests/fast/files/file-reader-methods-illegal-arguments-expected.txt

Issue 474353004: FileReader: switch to using TypeChecking=Interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | Source/core/fileapi/FileReader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/files/file-reader-methods-illegal-arguments-expected.txt
diff --git a/LayoutTests/fast/files/file-reader-methods-illegal-arguments-expected.txt b/LayoutTests/fast/files/file-reader-methods-illegal-arguments-expected.txt
index 3aa3dd00d60d89a79c9c7483328f61e71179b623..5ab71aacf16e9589f201425a19e7d1c20da1cc88 100644
--- a/LayoutTests/fast/files/file-reader-methods-illegal-arguments-expected.txt
+++ b/LayoutTests/fast/files/file-reader-methods-illegal-arguments-expected.txt
@@ -4,31 +4,31 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
PASS fileReader.readAsArrayBuffer(); threw exception TypeError: Failed to execute 'readAsArrayBuffer' on 'FileReader': 1 argument required, but only 0 present..
-PASS fileReader.readAsArrayBuffer(2); threw exception TypeError: Failed to execute 'readAsArrayBuffer' on 'FileReader': The argument is not a Blob..
-PASS fileReader.readAsArrayBuffer(null) threw exception TypeError: Failed to execute 'readAsArrayBuffer' on 'FileReader': The argument is not a Blob..
-PASS fileReader.readAsArrayBuffer(fileReader) threw exception TypeError: Failed to execute 'readAsArrayBuffer' on 'FileReader': The argument is not a Blob..
-PASS fileReader.readAsArrayBuffer([]) threw exception TypeError: Failed to execute 'readAsArrayBuffer' on 'FileReader': The argument is not a Blob..
+PASS fileReader.readAsArrayBuffer(2); threw exception TypeError: Failed to execute 'readAsArrayBuffer' on 'FileReader': parameter 1 is not of type 'Blob'..
+PASS fileReader.readAsArrayBuffer(null) threw exception TypeError: Failed to execute 'readAsArrayBuffer' on 'FileReader': parameter 1 is not of type 'Blob'..
+PASS fileReader.readAsArrayBuffer(fileReader) threw exception TypeError: Failed to execute 'readAsArrayBuffer' on 'FileReader': parameter 1 is not of type 'Blob'..
+PASS fileReader.readAsArrayBuffer([]) threw exception TypeError: Failed to execute 'readAsArrayBuffer' on 'FileReader': parameter 1 is not of type 'Blob'..
PASS fileReader.readAsArrayBuffer(blob, 'utf-8') did not throw exception.
PASS fileReader.readAsArrayBuffer(blob) threw exception InvalidStateError: Failed to execute 'readAsArrayBuffer' on 'FileReader': The object is already busy reading Blobs..
PASS fileReader.readAsBinaryString(); threw exception TypeError: Failed to execute 'readAsBinaryString' on 'FileReader': 1 argument required, but only 0 present..
-PASS fileReader.readAsBinaryString(2); threw exception TypeError: Failed to execute 'readAsBinaryString' on 'FileReader': The argument is not a Blob..
-PASS fileReader.readAsBinaryString(null) threw exception TypeError: Failed to execute 'readAsBinaryString' on 'FileReader': The argument is not a Blob..
-PASS fileReader.readAsBinaryString(fileReader) threw exception TypeError: Failed to execute 'readAsBinaryString' on 'FileReader': The argument is not a Blob..
-PASS fileReader.readAsBinaryString([]) threw exception TypeError: Failed to execute 'readAsBinaryString' on 'FileReader': The argument is not a Blob..
+PASS fileReader.readAsBinaryString(2); threw exception TypeError: Failed to execute 'readAsBinaryString' on 'FileReader': parameter 1 is not of type 'Blob'..
+PASS fileReader.readAsBinaryString(null) threw exception TypeError: Failed to execute 'readAsBinaryString' on 'FileReader': parameter 1 is not of type 'Blob'..
+PASS fileReader.readAsBinaryString(fileReader) threw exception TypeError: Failed to execute 'readAsBinaryString' on 'FileReader': parameter 1 is not of type 'Blob'..
+PASS fileReader.readAsBinaryString([]) threw exception TypeError: Failed to execute 'readAsBinaryString' on 'FileReader': parameter 1 is not of type 'Blob'..
PASS fileReader.readAsBinaryString(blob, 'utf-8') did not throw exception.
PASS fileReader.readAsBinaryString(blob) threw exception InvalidStateError: Failed to execute 'readAsBinaryString' on 'FileReader': The object is already busy reading Blobs..
PASS fileReader.readAsText(); threw exception TypeError: Failed to execute 'readAsText' on 'FileReader': 1 argument required, but only 0 present..
-PASS fileReader.readAsText(2); threw exception TypeError: Failed to execute 'readAsText' on 'FileReader': The argument is not a Blob..
-PASS fileReader.readAsText(null) threw exception TypeError: Failed to execute 'readAsText' on 'FileReader': The argument is not a Blob..
-PASS fileReader.readAsText(fileReader) threw exception TypeError: Failed to execute 'readAsText' on 'FileReader': The argument is not a Blob..
-PASS fileReader.readAsText([]) threw exception TypeError: Failed to execute 'readAsText' on 'FileReader': The argument is not a Blob..
+PASS fileReader.readAsText(2); threw exception TypeError: Failed to execute 'readAsText' on 'FileReader': parameter 1 is not of type 'Blob'..
+PASS fileReader.readAsText(null) threw exception TypeError: Failed to execute 'readAsText' on 'FileReader': parameter 1 is not of type 'Blob'..
+PASS fileReader.readAsText(fileReader) threw exception TypeError: Failed to execute 'readAsText' on 'FileReader': parameter 1 is not of type 'Blob'..
+PASS fileReader.readAsText([]) threw exception TypeError: Failed to execute 'readAsText' on 'FileReader': parameter 1 is not of type 'Blob'..
PASS fileReader.readAsText(blob, 'utf-8') did not throw exception.
PASS fileReader.readAsText(blob) threw exception InvalidStateError: Failed to execute 'readAsText' on 'FileReader': The object is already busy reading Blobs..
PASS fileReader.readAsDataURL(); threw exception TypeError: Failed to execute 'readAsDataURL' on 'FileReader': 1 argument required, but only 0 present..
-PASS fileReader.readAsDataURL(2); threw exception TypeError: Failed to execute 'readAsDataURL' on 'FileReader': The argument is not a Blob..
-PASS fileReader.readAsDataURL(null) threw exception TypeError: Failed to execute 'readAsDataURL' on 'FileReader': The argument is not a Blob..
-PASS fileReader.readAsDataURL(fileReader) threw exception TypeError: Failed to execute 'readAsDataURL' on 'FileReader': The argument is not a Blob..
-PASS fileReader.readAsDataURL([]) threw exception TypeError: Failed to execute 'readAsDataURL' on 'FileReader': The argument is not a Blob..
+PASS fileReader.readAsDataURL(2); threw exception TypeError: Failed to execute 'readAsDataURL' on 'FileReader': parameter 1 is not of type 'Blob'..
+PASS fileReader.readAsDataURL(null) threw exception TypeError: Failed to execute 'readAsDataURL' on 'FileReader': parameter 1 is not of type 'Blob'..
+PASS fileReader.readAsDataURL(fileReader) threw exception TypeError: Failed to execute 'readAsDataURL' on 'FileReader': parameter 1 is not of type 'Blob'..
+PASS fileReader.readAsDataURL([]) threw exception TypeError: Failed to execute 'readAsDataURL' on 'FileReader': parameter 1 is not of type 'Blob'..
PASS fileReader.readAsDataURL(blob, 'utf-8') did not throw exception.
PASS fileReader.readAsDataURL(blob) threw exception InvalidStateError: Failed to execute 'readAsDataURL' on 'FileReader': The object is already busy reading Blobs..
PASS successfullyParsed is true
« no previous file with comments | « no previous file | Source/core/fileapi/FileReader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698