equal
deleted
inserted
replaced
|
1 StartDocument( documentVersion="1.0" ) |
|
2 Comment( text=" Namespace equality test: plain repetition " ) |
|
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/~wilbur" ) |
|
18 ) |
|
19 Characters( whitespace text=" |
|
20 |
|
21 " ) |
|
22 Invalid( name="bar" qualifiedName="bar" |
|
23 Attribute( name="attr" namespaceUri="http://example.org/~wilbur" qualifiedName="a:attr" prefix="a" value="1" ) |
|
24 |
|
25 Attribute( name="attr" namespaceUri="http://example.org/~wilbur" qualifiedName="b:attr" prefix="b" value="2" ) |
|
26 ) |
|
27 ERROR: Attribute redefined. |