- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / window_open / close_panels_on_uninstall / 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 // Open a panel, popup and tab to non-extension content.
6 chrome.windows.create({url: "about:blank", type: "panel"});
7 window.open("about:blank",
8     "content_popup_non_extension", "height=200,width=200");
9 window.open("about:blank", "", "");
10
11 // Open a panel, popup and tab to extension content.
12 chrome.windows.create({url: "content_panel.html", type: "panel"});
13 chrome.windows.create({url: "content_popup.html", type: "popup"});
14 chrome.tabs.create({url: "content_tab.html"});