diff options
Diffstat (limited to 'toolkit/mozapps/extensions/test/addons/test_migrate8')
-rw-r--r-- | toolkit/mozapps/extensions/test/addons/test_migrate8/chrome.manifest | 6 | ||||
-rw-r--r-- | toolkit/mozapps/extensions/test/addons/test_migrate8/install.rdf | 24 |
2 files changed, 30 insertions, 0 deletions
diff --git a/toolkit/mozapps/extensions/test/addons/test_migrate8/chrome.manifest b/toolkit/mozapps/extensions/test/addons/test_migrate8/chrome.manifest new file mode 100644 index 0000000000..8570bae82f --- /dev/null +++ b/toolkit/mozapps/extensions/test/addons/test_migrate8/chrome.manifest @@ -0,0 +1,6 @@ +content test-addon-1 chrome/content + + locale test-addon-1 en-US locale/en-US + locale test-addon-1 fr-FR locale/fr-FR +overlay chrome://browser/content/browser.xul chrome://test-addon-1/content/overlay.xul +binary-component components/something.so diff --git a/toolkit/mozapps/extensions/test/addons/test_migrate8/install.rdf b/toolkit/mozapps/extensions/test/addons/test_migrate8/install.rdf new file mode 100644 index 0000000000..61ed24763d --- /dev/null +++ b/toolkit/mozapps/extensions/test/addons/test_migrate8/install.rdf @@ -0,0 +1,24 @@ +<?xml version="1.0"?> + +<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:em="http://www.mozilla.org/2004/em-rdf#"> + + <Description about="urn:mozilla:install-manifest"> + <em:id>addon8@tests.mozilla.org</em:id> + <em:version>1.0</em:version> + + <!-- Front End MetaData --> + <em:name>Test 8</em:name> + <em:description>Test Description</em:description> + <em:unpack>true</em:unpack> + + <em:targetApplication> + <Description> + <em:id>xpcshell@tests.mozilla.org</em:id> + <em:minVersion>1</em:minVersion> + <em:maxVersion>2</em:maxVersion> + </Description> + </em:targetApplication> + + </Description> +</RDF> |