0
|
1 |
StartDocument( documentVersion="1.0" )
|
|
2 |
Comment( text=" Namespace inequality test: different escaping " )
|
|
3 |
DTD( text="
|
|
4 |
<!DOCTYPE foo [
|
|
5 |
<!ELEMENT foo ANY>
|
|
6 |
<!ATTLIST foo xmlns:a CDATA #IMPLIED
|
|
7 |
xmlns:b CDATA #IMPLIED
|
|
8 |
xmlns:c CDATA #IMPLIED>
|
|
9 |
<!ELEMENT bar ANY>
|
|
10 |
<!ATTLIST bar a:attr CDATA #IMPLIED
|
|
11 |
b:attr CDATA #IMPLIED
|
|
12 |
c:attr CDATA #IMPLIED>
|
|
13 |
]>" dtdName="foo" )
|
|
14 |
StartElement( name="foo" qualifiedName="foo"
|
|
15 |
NamespaceDeclaration( prefix="a" namespaceUri="http://example.org/~wilbur" )
|
|
16 |
|
|
17 |
NamespaceDeclaration( prefix="b" namespaceUri="http://example.org/%7ewilbur" )
|
|
18 |
|
|
19 |
NamespaceDeclaration( prefix="c" namespaceUri="http://example.org/%7Ewilbur" )
|
|
20 |
)
|
|
21 |
Characters( whitespace text="
|
|
22 |
|
|
23 |
" )
|
|
24 |
StartElement( name="bar" qualifiedName="bar"
|
|
25 |
Attribute( name="attr" namespaceUri="http://example.org/~wilbur" qualifiedName="a:attr" prefix="a" value="1" )
|
|
26 |
|
|
27 |
Attribute( name="attr" namespaceUri="http://example.org/%7ewilbur" qualifiedName="b:attr" prefix="b" value="2" )
|
|
28 |
|
|
29 |
Attribute( name="attr" namespaceUri="http://example.org/%7Ewilbur" qualifiedName="c:attr" prefix="c" value="3" )
|
|
30 |
)
|
|
31 |
EndElement( name="bar" qualifiedName="bar" )
|
|
32 |
Characters( whitespace text="
|
|
33 |
|
|
34 |
" )
|
|
35 |
EndElement( name="foo" qualifiedName="foo" )
|
|
36 |
EndDocument( )
|