Index: chrome/test/data/extensions/extension_api_unittest/api_features.json |
diff --git a/chrome/test/data/extensions/extension_api_unittest/api_features.json b/chrome/test/data/extensions/extension_api_unittest/api_features.json |
index 476525d63faf4a564fe956127290b76cd6d895aa..507880c9f56b5aec66c753e3eac87a233bde81aa 100644 |
--- a/chrome/test/data/extensions/extension_api_unittest/api_features.json |
+++ b/chrome/test/data/extensions/extension_api_unittest/api_features.json |
@@ -50,5 +50,28 @@ |
"contexts": ["web_page"], |
"matches": ["http://bar.com/*"], |
"dependencies": ["test7.foo"] |
+ }, |
+ |
+ "parent1": { |
+ "contexts": ["content_script"] |
+ }, |
+ "child1": { |
+ "parent": "parent1", |
+ "contexts": ["web_page"], |
+ "matches": ["<all_urls>"] |
+ }, |
+ "child2": { |
+ "parent": "parent1" |
+ }, |
+ "parent2": { |
+ "contexts": ["content_script", "blessed_extension", "unblessed_extension"] |
+ }, |
+ "child3": { |
+ "parent": "parent2", |
+ "contexts": ["blessed_extension"] |
+ }, |
+ "child.child": { |
+ "parent": "child3", |
+ "contexts": ["content_script", "unblessed_extension"] |
} |
} |