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

Side by Side Diff: LayoutTests/fast/files/workers/worker-read-file-async-expected.txt

Issue 114953006: Add missing FileReader argument typechecking. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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
« no previous file with comments | « LayoutTests/fast/files/read-file-async-expected.txt ('k') | Source/core/fileapi/FileReader.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 Received files in worker 2 Received files in worker
3 Test reading a non-existent file as array buffer 3 Test reading a non-existent file as array buffer
4 readyState: 0 4 readyState: 0
5 Received error event 5 Received error event
6 readyState: 2 6 readyState: 2
7 error name: NotFoundError 7 error name: NotFoundError
8 result: null 8 result: null
9 Received loadend event 9 Received loadend event
10 Test reading a non-existent file as binary string 10 Test reading a non-existent file as binary string
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 readyState: 0 167 readyState: 0
168 Received loadstart event 168 Received loadstart event
169 readyState: 1 169 readyState: 1
170 Received load event 170 Received load event
171 readyState: 2 171 readyState: 2
172 result size: 31 172 result size: 31
173 result: data:text/plain;base64,SGVsbG8= 173 result: data:text/plain;base64,SGVsbG8=
174 Received loadend event 174 Received loadend event
175 Test calling multiple concurrent read methods 175 Test calling multiple concurrent read methods
176 readyState: 0 176 readyState: 0
177 Received exception, code: 11, name: InvalidStateError, message: An attempt was m ade to use an object that is not, or is no longer, usable. 177 Received exception, code: 11, name: InvalidStateError, message: Failed to execut e 'readAsArrayBuffer' on 'FileReader': The object is already busy reading Blobs.
178 Received exception, code: 11, name: InvalidStateError, message: An attempt was m ade to use an object that is not, or is no longer, usable. 178 Received exception, code: 11, name: InvalidStateError, message: Failed to execut e 'readAsBinaryString' on 'FileReader': The object is already busy reading Blobs .
179 Received exception, code: 11, name: InvalidStateError, message: An attempt was m ade to use an object that is not, or is no longer, usable. 179 Received exception, code: 11, name: InvalidStateError, message: Failed to execut e 'readAsText' on 'FileReader': The object is already busy reading Blobs.
180 Received exception, code: 11, name: InvalidStateError, message: An attempt was m ade to use an object that is not, or is no longer, usable. 180 Received exception, code: 11, name: InvalidStateError, message: Failed to execut e 'readAsDataURL' on 'FileReader': The object is already busy reading Blobs.
181 Received loadstart event 181 Received loadstart event
182 readyState: 1 182 readyState: 1
183 Received load event 183 Received load event
184 readyState: 2 184 readyState: 2
185 result size: 31 185 result size: 31
186 result: data:text/plain;base64,SGVsbG8= 186 result: data:text/plain;base64,SGVsbG8=
187 Received loadend event 187 Received loadend event
188 Test reading again after successful read 188 Test reading again after successful read
189 readyState: 0 189 readyState: 0
190 Received loadstart event 190 Received loadstart event
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 result before reading method: null 226 result before reading method: null
227 Received loadstart event 227 Received loadstart event
228 readyState: 1 228 readyState: 1
229 Received load event 229 Received load event
230 readyState: 2 230 readyState: 2
231 result size: 0 231 result size: 0
232 result: 232 result:
233 Received loadend event 233 Received loadend event
234 DONE 234 DONE
235 235
OLDNEW
« no previous file with comments | « LayoutTests/fast/files/read-file-async-expected.txt ('k') | Source/core/fileapi/FileReader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698