blob: e3945324eb237a9306b6e006823b0dc04ac6dfbb (
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
|
StartDocument( documentVersion="1.0" )
Comment( text=" Namespace equality test: use of entity reference " )
DTD( text="
<!DOCTYPE foo [
<!ELEMENT foo ANY>
<!ATTLIST foo xmlns:a CDATA #IMPLIED
xmlns:b CDATA #IMPLIED
xmlns:c CDATA #IMPLIED>
<!ELEMENT bar ANY>
<!ATTLIST bar a:attr CDATA #IMPLIED
b:attr CDATA #IMPLIED
c:attr CDATA #IMPLIED>
<!ENTITY tilde "~">
]>" dtdName="foo"
EntityDeclaration( name="tilde" value="~" )
)
StartElement( name="foo" qualifiedName="foo"
NamespaceDeclaration( prefix="a" namespaceUri="http://example.org/~wilbur" )
NamespaceDeclaration( prefix="b" namespaceUri="http://example.org/~wilbur" )
)
Characters( whitespace text="
" )
Invalid( name="bar" qualifiedName="bar"
Attribute( name="attr" namespaceUri="http://example.org/~wilbur" qualifiedName="a:attr" prefix="a" value="1" )
Attribute( name="attr" namespaceUri="http://example.org/~wilbur" qualifiedName="b:attr" prefix="b" value="2" )
)
ERROR: Attribute redefined.
|