OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../js/resources/js-test-pre.js"></script> |
4 <script src="resources/fs-test-util.js"></script> | 4 <script src="resources/fs-test-util.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <script> | 7 <script> |
8 description('This test tries calling various filesystem functions with too few a
rguments.'); | 8 description('This test tries calling various filesystem functions with too few a
rguments.'); |
9 | 9 |
10 function errorCallback(error) | 10 function errorCallback(error) |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 if (window.webkitRequestFileSystem) { | 48 if (window.webkitRequestFileSystem) { |
49 shouldThrow("webkitResolveLocalFileSystemURL()"); | 49 shouldThrow("webkitResolveLocalFileSystemURL()"); |
50 shouldThrow("webkitRequestFileSystem()"); | 50 shouldThrow("webkitRequestFileSystem()"); |
51 shouldThrow("webkitRequestFileSystem(PERSISTENT)"); | 51 shouldThrow("webkitRequestFileSystem(PERSISTENT)"); |
52 shouldThrow("webkitRequestFileSystem(PERSISTENT, 100)"); | 52 shouldThrow("webkitRequestFileSystem(PERSISTENT, 100)"); |
53 webkitRequestFileSystem(window.TEMPORARY, 100, successCallback, errorCallbac
k); | 53 webkitRequestFileSystem(window.TEMPORARY, 100, successCallback, errorCallbac
k); |
54 window.jsTestIsAsync = true; | 54 window.jsTestIsAsync = true; |
55 } else | 55 } else |
56 debug("This test requires FileSystem API support."); | 56 debug("This test requires FileSystem API support."); |
57 </script> | 57 </script> |
58 <script src="../js/resources/js-test-post.js"></script> | |
59 </body> | 58 </body> |
60 </html> | 59 </html> |
OLD | NEW |