Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / browser_action / split_mode / background.js
blob90751008b1277cbcbc7d4dabfa8e81fa27e14c9f
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 chrome.browserAction.onClicked.addListener(function(tab) {
6   chrome.tabs.create({ url: 'about:blank' }, function(newtab) {
7     chrome.windows.get(tab.windowId, { populate: true }, function(window) {
8       if (!window) {
9         chrome.test.notifyFail(
10             'Could not get window for the tab (probably due to wrong profile)');
11         return;
12       }
13       chrome.test.assertEq(2, window.tabs.length);
14       chrome.test.notifyPass();
15     });
16   });
17 });