aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlxmllistmodel/data/nestedElements.xml
blob: 8ea904920eb2296827f4c7af993aefe647bbed5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<Pets>
    <Pet>
        <name>Polly</name>
        <completely>
            <useless>
                <hierarchy/>
            </useless>
        </completely>
        <some>
            <other>
                <type>incorrect type tag</type>
                <another>
                    <nested>
                        <tag/>
                    </nested>
                </another>
                <useful>
                    <tags>
                        <type>Parrot</type>
                        <size>incorrect size tag</size>
                    </tags>
                </useful>
                <age value="12"/>
            </other>
            <size>Small</size>
        </some>
    </Pet>
    <Pet>
        <name>Penny</name>
        <some>
            <other>
                <type>incorrect type tag</type>
                <useful>
                    <tags>
                        <type>Turtle</type>
                        <size>incorrect size tag</size>
                    </tags>
                </useful>
                <age value="4"/>
            </other>
            <size>Small</size>
        </some>
    </Pet>
    <Pet>
        <name>Spot</name>
        <some>
            <other>
                <type>incorrect type tag</type>
                <useful>
                    <tags>
                        <type>Dog</type>
                        <size>incorrect size tag</size>
                    </tags>
                </useful>
                <age value="9"/>
            </other>
            <size>Medium</size>
        </some>
    </Pet>
    <Pet>
        <name>Tiny</name>
        <some>
            <other>
                <type>incorrect type tag</type>
                <useful>
                    <tags>
                        <type>Elephant</type>
                        <size>incorrect size tag</size>
                    </tags>
                </useful>
                <age value="15"/>
            </other>
            <size>Large</size>
        </some>
    </Pet>
</Pets>