Chromium Code Reviews| 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"}); |
|
dcheng
2011/10/28 19:48:17
about:blank has special behavior. I would create a
prasadt
2011/10/28 20:19:35
about:blank meets the requirement for this test as
dcheng
2011/10/28 20:27:08
There's some ongoing work to fix the current issue
prasadt
2011/10/28 20:53:23
As it stands now, this may not be an issue for thi
dcheng
2011/10/28 21:11:57
There's no guarantee that about:blank pages open i
prasadt
2011/10/28 22:11:02
Discussed offline. Yes, about:blank does not guara
|
| +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> |