Index: chrome/test/data/extensions/api_test/window_open/close_panels_on_uninstall/background.html |
diff --git a/chrome/test/data/extensions/api_test/window_open/close_panels_on_uninstall/background.html b/chrome/test/data/extensions/api_test/window_open/close_panels_on_uninstall/background.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..453277213c2a3a2bc5e853c2509dc62f2e86db7d |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/window_open/close_panels_on_uninstall/background.html |
@@ -0,0 +1,14 @@ |
+<script> |
+ |
+// Open a panel, popup and tab to non-extension content. |
+chrome.windows.create({url: "about:blank", type: "panel"}); |
+window.open("about:blank", |
+ "content_popup_non_extension", "height=200,width=200"); |
+window.open("about:blank", "", ""); |
+ |
+// Open a panel, popup and tab to extension content. |
+chrome.windows.create({url: "content_panel.html", type: "panel"}); |
+chrome.windows.create({url: "content_popup.html", type: "popup"}); |
+chrome.tabs.create({url: "content_tab.html"}); |
+ |
+</script> |