0
|
1 |
StartDocument( documentVersion="1.0" )
|
|
2 |
Comment( text=" Attribute uniqueness: different attributes with same local name " )
|
|
3 |
StartElement( name="foo" qualifiedName="foo"
|
|
4 |
NamespaceDeclaration( prefix="a" namespaceUri="http://example.org/~wilbur" )
|
|
5 |
|
|
6 |
NamespaceDeclaration( prefix="b" namespaceUri="http://example.org/~kipper" )
|
|
7 |
)
|
|
8 |
Characters( whitespace text="
|
|
9 |
|
|
10 |
" )
|
|
11 |
StartElement( name="bar" qualifiedName="bar"
|
|
12 |
Attribute( name="attr" namespaceUri="http://example.org/~wilbur" qualifiedName="a:attr" prefix="a" value="1" )
|
|
13 |
|
|
14 |
Attribute( name="attr" namespaceUri="http://example.org/~kipper" qualifiedName="b:attr" prefix="b" value="2" )
|
|
15 |
)
|
|
16 |
EndElement( name="bar" qualifiedName="bar" )
|
|
17 |
Characters( whitespace text="
|
|
18 |
|
|
19 |
" )
|
|
20 |
EndElement( name="foo" qualifiedName="foo" )
|
|
21 |
EndDocument( )
|