38be0d1383
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
28 lines
917 B
Plaintext
28 lines
917 B
Plaintext
StartDocument( documentVersion="1.0" )
|
|
Comment( text=" Namespace inequality test: equal after attribute value normalization " )
|
|
DTD( text="
|
|
<!DOCTYPE foo [
|
|
<!ELEMENT foo ANY>
|
|
<!ATTLIST foo xmlns:a CDATA #IMPLIED
|
|
xmlns:b NMTOKEN #IMPLIED
|
|
xmlns:c CDATA #IMPLIED>
|
|
<!ELEMENT bar ANY>
|
|
<!ATTLIST bar a:attr CDATA #IMPLIED
|
|
b:attr CDATA #IMPLIED
|
|
c:attr CDATA #IMPLIED>
|
|
]>" dtdName="foo" )
|
|
StartElement( name="foo" qualifiedName="foo"
|
|
NamespaceDeclaration( prefix="a" namespaceUri="urn:xyzzy" )
|
|
|
|
NamespaceDeclaration( prefix="b" namespaceUri="urn:xyzzy" )
|
|
)
|
|
Characters( whitespace text="
|
|
|
|
" )
|
|
Invalid( name="bar" qualifiedName="bar"
|
|
Attribute( name="attr" namespaceUri="urn:xyzzy" qualifiedName="a:attr" prefix="a" value="1" )
|
|
|
|
Attribute( name="attr" namespaceUri="urn:xyzzy" qualifiedName="b:attr" prefix="b" value="2" )
|
|
)
|
|
ERROR: Attribute redefined.
|