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

Unified Diff: chrome/test/data/extensions/api_test/window_open/popup_blocking/extension/manifest.json

Issue 3389015: Merge 58902 - Fix bug where window.open() with no feature string from... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/517/src/
Patch Set: 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/manifest.json
===================================================================
--- chrome/test/data/extensions/api_test/window_open/popup_blocking/extension/manifest.json (revision 0)
+++ chrome/test/data/extensions/api_test/window_open/popup_blocking/extension/manifest.json (revision 0)
@@ -0,0 +1,13 @@
+{
+ "name": "Popup blocking test",
+ "version": "1",
+ "description": "Popup windows should never be blocked from within an extension.",
+ "permissions": ["tabs"],
+ "background_page": "background.html",
+ "content_scripts": [
+ {
+ "matches": ["http://b.com/*"],
+ "js": ["pop.js", "content_script.js"]
+ }
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698