Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / messaging / connect_panel / test.js
blob9784b0ecb0326b5d8294f4c58f1c95dc18ccbd8f
1 // Copyright (c) 2012 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 var panelWindowId = 0;
7 chrome.test.runTests([
8 function openPanelThatConnectsToExtension() {
9 chrome.test.listenOnce(chrome.runtime.onConnect, function(port) {
10 chrome.test.assertEq(panelWindowId, port.sender.tab.windowId);
11 chrome.test.assertTrue(port.sender.tab.id > 0);
12 });
13 chrome.windows.create(
14 { 'url': chrome.extension.getURL('panel.html'), 'type': 'panel' },
15 chrome.test.callbackPass(function(win) {
16 chrome.test.assertEq('panel', win.type);
17 panelWindowId = win.id;
18 }));
20 ]);