|
1 <?xml version="1.0" ?> |
|
2 <!DOCTYPE Test [ |
|
3 <!ATTLIST test id ID #REQUIRED> |
|
4 <!ATTLIST foo:test id ID #REQUIRED> |
|
5 <!ATTLIST foo2:test id ID #REQUIRED> |
|
6 <!ATTLIST bar:test id ID #REQUIRED> |
|
7 ]> |
|
8 |
|
9 <!-- Comment --> |
|
10 |
|
11 <?This-is-a-PI ?> |
|
12 |
|
13 <root xmlns:foo="foo" |
|
14 xmlns:bar="bar" |
|
15 xmlns:foo2="foo"> |
|
16 |
|
17 <test id="test1"> |
|
18 </test> |
|
19 |
|
20 <test id="test2"> |
|
21 <!-- Another comment --> |
|
22 <test id="test3"> |
|
23 </test> |
|
24 |
|
25 <test id="test4" xmlns="foo"> |
|
26 <test id="test5"> |
|
27 </test> |
|
28 |
|
29 <bar:test id="test6" /> |
|
30 </test> |
|
31 |
|
32 <foo:test id="test7"> |
|
33 </foo:test> |
|
34 |
|
35 <foo2:test id="test8"> |
|
36 <?Another-PI ?> |
|
37 <baz /> |
|
38 </foo2:test> |
|
39 |
|
40 <bar:test id="test9"> |
|
41 </bar:test> |
|
42 </test> |
|
43 |
|
44 <foo:test id="test10"> |
|
45 <foo2:test id="test11"> |
|
46 <bar:test id="test12"> |
|
47 </bar:test> |
|
48 </foo2:test> |
|
49 </foo:test> |
|
50 |
|
51 <foo2:test id="test13"> |
|
52 </foo2:test> |
|
53 |
|
54 <bar:test id="test14"> |
|
55 </bar:test> |
|
56 |
|
57 </root> |
|
58 |