0
|
1 |
StartDocument( documentVersion="1.0" )
|
|
2 |
Comment( text=" Colon in ID attribute name " )
|
|
3 |
DTD( text="
|
|
4 |
<!DOCTYPE foo [
|
|
5 |
<!ELEMENT foo ANY>
|
|
6 |
<!ATTLIST foo id ID #IMPLIED
|
|
7 |
ref IDREF #IMPLIED>
|
|
8 |
]>" dtdName="foo" )
|
|
9 |
StartElement( name="foo" qualifiedName="foo"
|
|
10 |
Attribute( name="ref" qualifiedName="ref" value="a:b" )
|
|
11 |
)
|
|
12 |
Characters( whitespace text="
|
|
13 |
" )
|
|
14 |
StartElement( name="foo" qualifiedName="foo"
|
|
15 |
Attribute( name="id" qualifiedName="id" value="a:b" )
|
|
16 |
)
|
|
17 |
EndElement( name="foo" qualifiedName="foo" )
|
|
18 |
Characters( whitespace text="
|
|
19 |
" )
|
|
20 |
EndElement( name="foo" qualifiedName="foo" )
|
|
21 |
EndDocument( )
|