| OLD | NEW |
| 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 |
| OLD | NEW |