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

Unified Diff: chrome/test/data/extensions/browsertest/crash_25562/manifest.json

Issue 316018: Fix crash with page actions without icons (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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/browsertest/crash_25562/manifest.json
===================================================================
--- chrome/test/data/extensions/browsertest/crash_25562/manifest.json (revision 0)
+++ chrome/test/data/extensions/browsertest/crash_25562/manifest.json (revision 0)
@@ -0,0 +1,17 @@
+{
+ "background_page": "background.html",
+ "content_scripts": [ {
+ "js": [ "script.js" ],
+ "matches": [ "http://*/*" ]
+ } ],
+ "description": "A page action with incorrect icon specification",
+ "name": "Test extension",
+ "page_actions": [ {
+ "icon": "chrome-16.png",
+ "id": "TestId",
+ "name": "Page action name",
+ "tooltip": "Page action tooltip"
+ } ],
+ "permissions": [ "http://*/*" ],
+ "version": "1.0"
+}

Powered by Google App Engine
This is Rietveld 408576698