Index: chrome/test/data/extensions/api_test/file_system/save_background/background.js |
diff --git a/chrome/test/data/extensions/api_test/file_system/save_background/background.js b/chrome/test/data/extensions/api_test/file_system/save_background/background.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0843b59f152ccc85cf0960de1199d0a439edbb95 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/file_system/save_background/background.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({type: 'saveFile'}, chrome.test.callbackFail( |
+ 'Invalid calling page', function(entry) {})); |
+ } |
+]); |