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..cb005aecbd12b5c1e1638c156d741994493afd00 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/file_system/save_background/background.js |
@@ -0,0 +1,6 @@ |
+chrome.test.runTests([ |
+ function openFile() { |
+ chrome.fileSystem.chooseFile({type: 'saveFile'}, chrome.test.callbackFail( |
+ 'Invalid calling page', function(entry) {})); |
+ } |
+]); |