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

Side by Side Diff: LayoutTests/http/tests/filesystem/workers/resolve-url-sync-expected.txt

Issue 17761003: Remove FileException (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix compile warning Created 7 years, 5 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 [Worker] Tests using webkitResolveLocalFileSystemSyncURL to obtain an Entry from a URL 1 [Worker] Tests using webkitResolveLocalFileSystemSyncURL to obtain an Entry from a URL
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 Starting worker: script-tests/resolve-url-sync.js 6 Starting worker: script-tests/resolve-url-sync.js
7 [Worker] * Resolving a generated URL. 7 [Worker] * Resolving a generated URL.
8 PASS [Worker] expectedPath is actualPath 8 PASS [Worker] expectedPath is actualPath
9 PASS [Worker] isFile is true 9 PASS [Worker] isFile is true
10 [Worker] * Resolving test file by hand 10 [Worker] * Resolving test file by hand
11 PASS [Worker] expectedPath is actualPath 11 PASS [Worker] expectedPath is actualPath
12 PASS [Worker] isFile is true 12 PASS [Worker] isFile is true
13 [Worker] * Resolving a URL with the wrong security origin (domain) 13 [Worker] * Resolving a URL with the wrong security origin (domain)
14 PASS [Worker] FileException.SECURITY_ERR is errorCode 14 PASS [Worker] error.name is 'SecurityError'
15 [Worker] * Resolving a URL with the wrong security origin (port) 15 [Worker] * Resolving a URL with the wrong security origin (port)
16 PASS [Worker] FileException.SECURITY_ERR is errorCode 16 PASS [Worker] error.name is 'SecurityError'
17 [Worker] * Resolving a URL with the wrong security origin (scheme) 17 [Worker] * Resolving a URL with the wrong security origin (scheme)
18 PASS [Worker] FileException.SECURITY_ERR is errorCode 18 PASS [Worker] error.name is 'SecurityError'
19 [Worker] * Resolving a completely bogus URL. 19 [Worker] * Resolving a completely bogus URL.
20 PASS [Worker] FileException.ENCODING_ERR is errorCode 20 PASS [Worker] error.name is 'EncodingError'
21 [Worker] * Resolving a URL with the wrong protocol 21 [Worker] * Resolving a URL with the wrong protocol
22 PASS [Worker] FileException.ENCODING_ERR is errorCode 22 PASS [Worker] error.name is 'EncodingError'
23 [Worker] * Resolving a URL with no slash between type and file 23 [Worker] * Resolving a URL with no slash between type and file
24 PASS [Worker] FileException.ENCODING_ERR is errorCode 24 PASS [Worker] error.name is 'EncodingError'
25 [Worker] * Resolving a URL with no slash between protocol and type (bogus port) 25 [Worker] * Resolving a URL with no slash between protocol and type (bogus port)
26 PASS [Worker] FileException.SECURITY_ERR is errorCode 26 PASS [Worker] error.name is 'SecurityError'
27 [Worker] * Resolve a path using backslashes 27 [Worker] * Resolve a path using backslashes
28 PASS [Worker] expectedPath is actualPath 28 PASS [Worker] expectedPath is actualPath
29 PASS [Worker] isFile is true 29 PASS [Worker] isFile is true
30 [Worker] * Resolve a directory 30 [Worker] * Resolve a directory
31 PASS [Worker] expectedPath is actualPath 31 PASS [Worker] expectedPath is actualPath
32 PASS [Worker] isDirectory is true 32 PASS [Worker] isDirectory is true
33 [Worker] * Resolve a path using a trailing slash 33 [Worker] * Resolve a path using a trailing slash
34 PASS [Worker] expectedPath is actualPath 34 PASS [Worker] expectedPath is actualPath
35 PASS [Worker] isDirectory is true 35 PASS [Worker] isDirectory is true
36 [Worker] * Resolving a persistent URL. 36 [Worker] * Resolving a persistent URL.
37 PASS [Worker] expectedPath is actualPath 37 PASS [Worker] expectedPath is actualPath
38 PASS [Worker] isDirectory is true 38 PASS [Worker] isDirectory is true
39 [Worker] Finished running tests. 39 [Worker] Finished running tests.
40 PASS successfullyParsed is true 40 PASS successfullyParsed is true
41 41
42 TEST COMPLETE 42 TEST COMPLETE
43 43
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698