diff options
Diffstat (limited to 'toolkit/mozapps/webextensions/test/addons/test_undoincompatible/install.rdf')
-rw-r--r-- | toolkit/mozapps/webextensions/test/addons/test_undoincompatible/install.rdf | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/toolkit/mozapps/webextensions/test/addons/test_undoincompatible/install.rdf b/toolkit/mozapps/webextensions/test/addons/test_undoincompatible/install.rdf new file mode 100644 index 000000000..b038ebc51 --- /dev/null +++ b/toolkit/mozapps/webextensions/test/addons/test_undoincompatible/install.rdf @@ -0,0 +1,28 @@ +<?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>incompatible@tests.mozilla.org</em:id> + <em:version>1.0</em:version> + <em:bootstrap>true</em:bootstrap> + + <!-- Front End MetaData --> + <em:name>Incompatible Addon</em:name> + <em:description>I am incompatible</em:description> + + <em:iconURL>chrome://foo/skin/icon.png</em:iconURL> + <em:aboutURL>chrome://foo/content/about.xul</em:aboutURL> + <em:optionsURL>chrome://foo/content/options.xul</em:optionsURL> + + <em:targetApplication> + <Description> + <em:id>xpcshell@tests.mozilla.org</em:id> + <em:minVersion>2</em:minVersion> + <em:maxVersion>2</em:maxVersion> + </Description> + </em:targetApplication> + + </Description> +</RDF> |