summaryrefslogtreecommitdiffstats
path: root/testing/mozbase/mozprofile/tests/install_manifests/test_addon_invalid_not_wellformed.rdf
blob: 690ec406ccfc0c2418115d622814dfb2bfb46f02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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">
        <!-- Invalid because it's not well-formed -->
        <em:id>test-addon-invalid-not-wellformed@mozilla.org</em:id
        <em:version>0.1</em:version>
        <em:name>Test Invalid Extension (no id)</em:name>
        <em:creator>Mozilla</em:creator>
        <em:homepageURL>http://mozilla.org</em:homepageURL>
        <em:type>2</em:type>

        <!-- Firefox -->
        <em:targetApplication>
            <Description>
                <!-- Invalid target application string -->
                <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
                <em:minVersion>3.5.*</em:minVersion>
                <em:maxVersion>*</em:maxVersion>
            </Description>
        </em:targetApplication>
    </Description>
</RDF>