Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10755)

Unified Diff: chrome/test/data/extensions/api_test/window_open/popup_blocking/extension/pop.js

Issue 3352009: Fix bug where window.open() with no feature string from (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: add license text Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/window_open/popup_blocking/extension/pop.js
diff --git a/chrome/test/data/extensions/api_test/window_open/popup_blocking/extension/pop.js b/chrome/test/data/extensions/api_test/window_open/popup_blocking/extension/pop.js
new file mode 100644
index 0000000000000000000000000000000000000000..92440055b7879d79a57bbd170f87674c7fade7be
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/window_open/popup_blocking/extension/pop.js
@@ -0,0 +1,8 @@
+var popupURL =
+ "http://a.com:1337/files/extensions/api_test/window_open/popup_blocking/" +
+ "extension/foo.html";
+
+function pop() {
+ window.open(popupURL);
+ window.open(popupURL, "", "width=300,height=300");
+}

Powered by Google App Engine
This is Rietveld 408576698