Index: chrome/test/data/extensions/api_test/browser_action/split_mode/background.js |
diff --git a/chrome/test/data/extensions/api_test/browser_action/split_mode/background.js b/chrome/test/data/extensions/api_test/browser_action/split_mode/background.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..90751008b1277cbcbc7d4dabfa8e81fa27e14c9f |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/browser_action/split_mode/background.js |
@@ -0,0 +1,17 @@ |
+// Copyright 2013 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.browserAction.onClicked.addListener(function(tab) { |
+ chrome.tabs.create({ url: 'about:blank' }, function(newtab) { |
+ chrome.windows.get(tab.windowId, { populate: true }, function(window) { |
+ if (!window) { |
+ chrome.test.notifyFail( |
+ 'Could not get window for the tab (probably due to wrong profile)'); |
+ return; |
+ } |
+ chrome.test.assertEq(2, window.tabs.length); |
+ chrome.test.notifyPass(); |
+ }); |
+ }); |
+}); |