Index: chrome/test/data/extensions/api_test/file_system/open_cancel/test.js |
diff --git a/chrome/test/data/extensions/api_test/file_system/open_cancel/test.js b/chrome/test/data/extensions/api_test/file_system/open_cancel/test.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..892c0c1496cc19a0e2d101df5b0b652e25b67427 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/file_system/open_cancel/test.js |
@@ -0,0 +1,10 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+chrome.test.runTests([ |
+ function openFile() { |
+ chrome.fileSystem.chooseFile(chrome.test.callbackFail( |
+ 'User cancelled', function(entry) {})); |
+ } |
+]); |