0
|
1 |
StartDocument( documentVersion="1.0" )
|
|
2 |
Comment( text=" Namespace inequality test: equal after attribute value normalization " )
|
|
3 |
DTD( text="
|
|
4 |
<!DOCTYPE foo [
|
|
5 |
<!ELEMENT foo ANY>
|
|
6 |
<!ATTLIST foo xmlns:a CDATA #IMPLIED
|
|
7 |
xmlns:b NMTOKEN #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="urn:xyzzy" )
|
|
16 |
|
|
17 |
NamespaceDeclaration( prefix="b" namespaceUri="urn:xyzzy" )
|
|
18 |
)
|
|
19 |
Characters( whitespace text="
|
|
20 |
|
|
21 |
" )
|
|
22 |
Invalid( name="bar" qualifiedName="bar"
|
|
23 |
Attribute( name="attr" namespaceUri="urn:xyzzy" qualifiedName="a:attr" prefix="a" value="1" )
|
|
24 |
|
|
25 |
Attribute( name="attr" namespaceUri="urn:xyzzy" qualifiedName="b:attr" prefix="b" value="2" )
|
|
26 |
)
|
|
27 |
ERROR: Attribute redefined.
|