- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / content_scripts / isolated_world2 / background.js
1 // Copyright (c) 2011 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.
4
5 chrome.runtime.onConnect.addListener(function(port) {
6   chrome.test.log("got connect");
7   port.onMessage.addListener(function(msg) {
8     chrome.test.log("got message: " + msg);
9     chrome.test.assertTrue(msg);
10     chrome.test.notifyPass();
11   });
12 });
13
14 chrome.tabs.getAllInWindow(null, function(tabs) {
15   chrome.test.log("Got tabs: " + JSON.stringify(tabs));
16
17   // The last tab is the one that the other extension should have run scripts
18   // in.
19   chrome.tabs.executeScript(tabs.pop().id, {file: "a.js"});
20 });