Index: chrome/test/data/extensions/api_test/file_system/open_background/background.js |
diff --git a/chrome/test/data/extensions/api_test/file_system/open_background/background.js b/chrome/test/data/extensions/api_test/file_system/open_background/background.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ec315868da959110f7f6ae4c85d769141ed41923 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/file_system/open_background/background.js |
@@ -0,0 +1,6 @@ |
+chrome.test.runTests([ |
+ function openFile() { |
+ chrome.fileSystem.chooseFile(chrome.test.callbackFail( |
+ 'Invalid calling page', function(entry) {})); |
+ } |
+]); |