diff options
author | georged@chromium.org <georged@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-18 21:26:24 +0000 |
---|---|---|
committer | georged@chromium.org <georged@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-18 21:26:24 +0000 |
commit | 3cfbd0eb2afd2cf0b8b248d6bb97ec39b064cd23 (patch) | |
tree | eaa3eddbc15cf6bac88d04c4766778fd545f95c0 /chrome/test | |
parent | 836827406c7135b0225474d24b9d08dd8edff27a (diff) | |
download | chromium_src-3cfbd0eb2afd2cf0b8b248d6bb97ec39b064cd23.zip chromium_src-3cfbd0eb2afd2cf0b8b248d6bb97ec39b064cd23.tar.gz chromium_src-3cfbd0eb2afd2cf0b8b248d6bb97ec39b064cd23.tar.bz2 |
Review URL: http://codereview.chromium.org/42288
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12016 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
4 files changed, 12 insertions, 2 deletions
diff --git a/chrome/test/data/extensions/good/extension1/1/manifest.json b/chrome/test/data/extensions/good/extension1/1/manifest.json index 77a4639..e64b1d0 100644 --- a/chrome/test/data/extensions/good/extension1/1/manifest.json +++ b/chrome/test/data/extensions/good/extension1/1/manifest.json @@ -8,7 +8,8 @@ "content_scripts": [ { "matches": ["http://*.google.com/*", "https://*.google.com/*"], - "js": ["script1.js"] + "js": ["script1.js"], + "css": ["style1.css", "style2.css", "style2.css"] }, { "matches": ["http://*.yahoo.com/*"], diff --git a/chrome/test/data/extensions/good/extension1/1/style1.css b/chrome/test/data/extensions/good/extension1/1/style1.css new file mode 100644 index 0000000..2676c97 --- /dev/null +++ b/chrome/test/data/extensions/good/extension1/1/style1.css @@ -0,0 +1,2 @@ +* {background-color: beige !important}
+p {background-color: rgb(128,128,128)}
diff --git a/chrome/test/data/extensions/good/extension1/1/style2.css b/chrome/test/data/extensions/good/extension1/1/style2.css new file mode 100644 index 0000000..c851a8f --- /dev/null +++ b/chrome/test/data/extensions/good/extension1/1/style2.css @@ -0,0 +1,6 @@ +h1 {color: white; background-color: black;}
+h2 {color: white; background-color: black;}
+h3 {color: white; background-color: black;}
+h4 {color: white; background-color: black;}
+h5 {color: white; background-color: black;}
+h6 {color: white; background-color: black;}
diff --git a/chrome/test/data/extensions/ui/create_extension_detail_value_expected_output/good-extension1.json b/chrome/test/data/extensions/ui/create_extension_detail_value_expected_output/good-extension1.json index 35b8a11..e4e4b4d 100644 --- a/chrome/test/data/extensions/ui/create_extension_detail_value_expected_output/good-extension1.json +++ b/chrome/test/data/extensions/ui/create_extension_detail_value_expected_output/good-extension1.json @@ -5,7 +5,8 @@ "content_scripts": [ { "matches": ["http://*.google.com/*", "https://*.google.com/*"], - "js": ["script1.js"] + "js": ["script1.js"], + "css": ["style1.css", "style2.css", "style2.css"] }, { "matches": ["http://*.yahoo.com/*"], |