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

Side by Side Diff: LayoutTests/http/tests/filesystem/resolve-uri-expected.txt

Issue 22831019: Deprecate FileError in FileAPI (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: win test expectation fix (temporary) Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 Tests using webkitResolveLocalFileSystemURL to obtain an Entry from a URL 1 Tests using webkitResolveLocalFileSystemURL 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 * Resolving a generated URL. 6 * Resolving a generated URL.
7 PASS expectedPath is actualPath 7 PASS expectedPath is actualPath
8 PASS isFile is true 8 PASS isFile is true
9 * Resolving test file by hand 9 * Resolving test file by hand
10 PASS expectedPath is actualPath 10 PASS expectedPath is actualPath
11 PASS isFile is true 11 PASS isFile is true
12 * Resolving a URL with the wrong security origin (domain) 12 * Resolving a URL with the wrong security origin (domain)
13 PASS FileError.SECURITY_ERR is errorCode 13 PASS "SecurityError" is errorName
14 * Resolving a URL with the wrong security origin (port) 14 * Resolving a URL with the wrong security origin (port)
15 PASS FileError.SECURITY_ERR is errorCode 15 PASS "SecurityError" is errorName
16 * Resolving a URL with the wrong security origin (scheme) 16 * Resolving a URL with the wrong security origin (scheme)
17 PASS FileError.SECURITY_ERR is errorCode 17 PASS "SecurityError" is errorName
18 * Resolving a completely bogus URL. 18 * Resolving a completely bogus URL.
19 PASS FileError.ENCODING_ERR is errorCode 19 PASS "EncodingError" is errorName
20 * Resolving a URL with the wrong protocol 20 * Resolving a URL with the wrong protocol
21 PASS FileError.ENCODING_ERR is errorCode 21 PASS "EncodingError" is errorName
22 * Resolving a URL with no slash between type and file 22 * Resolving a URL with no slash between type and file
23 PASS FileError.ENCODING_ERR is errorCode 23 PASS "EncodingError" is errorName
24 * Resolving a URL with no slash between protocol and type (bogus port) 24 * Resolving a URL with no slash between protocol and type (bogus port)
25 PASS FileError.SECURITY_ERR is errorCode 25 PASS "SecurityError" is errorName
26 * Resolve a path using backslashes 26 * Resolve a path using backslashes
27 PASS expectedPath is actualPath 27 PASS expectedPath is actualPath
28 PASS isFile is true 28 PASS isFile is true
29 * Resolve a directory 29 * Resolve a directory
30 PASS expectedPath is actualPath 30 PASS expectedPath is actualPath
31 PASS isDirectory is true 31 PASS isDirectory is true
32 * Resolve a path using a trailing slash 32 * Resolve a path using a trailing slash
33 PASS expectedPath is actualPath 33 PASS expectedPath is actualPath
34 PASS isDirectory is true 34 PASS isDirectory is true
35 * Resolving a persistent URL. 35 * Resolving a persistent URL.
36 PASS expectedPath is actualPath 36 PASS expectedPath is actualPath
37 PASS isDirectory is true 37 PASS isDirectory is true
38 Finished running tests. 38 Finished running tests.
39 PASS successfullyParsed is true 39 PASS successfullyParsed is true
40 40
41 TEST COMPLETE 41 TEST COMPLETE
42 42
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698