blob: ddde596a27f6df14685e413170e9f800dbfbbb48 (
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
|
<?xml version="1.0" ?>
<!DOCTYPE Test [
<!ATTLIST test id ID #REQUIRED>
<!ATTLIST foo:test id ID #REQUIRED>
<!ATTLIST foo2:test id ID #REQUIRED>
<!ATTLIST bar:test id ID #REQUIRED>
]>
<!-- Comment -->
<?This-is-a-PI ?>
<root xmlns:foo="foo"
xmlns:bar="bar"
xmlns:foo2="foo">
<test id="test1">
</test>
<test id="test2">
<!-- Another comment -->
<test id="test3">
</test>
<test id="test4" xmlns="foo">
<test id="test5">
</test>
<bar:test id="test6" />
</test>
<foo:test id="test7">
</foo:test>
<foo2:test id="test8">
<?Another-PI ?>
<baz />
</foo2:test>
<bar:test id="test9">
</bar:test>
</test>
<foo:test id="test10">
<foo2:test id="test11">
<bar:test id="test12">
</bar:test>
</foo2:test>
</foo:test>
<foo2:test id="test13">
</foo2:test>
<bar:test id="test14">
</bar:test>
</root>
|