mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
xml: Fixed CDATA parsing.
Fixes #128. R=r, rsc https://golang.org/cl/154126
This commit is contained in:
parent
14a4ece979
commit
bad9738be6
2 changed files with 9 additions and 5 deletions
|
|
@ -24,7 +24,7 @@ const testInput = `
|
|||
<inner/>
|
||||
</outer>
|
||||
<tag:name>
|
||||
Some text here.
|
||||
<![CDATA[Some text here.]]>
|
||||
</tag:name>
|
||||
</body><!-- missing final newline -->`
|
||||
|
||||
|
|
@ -52,7 +52,9 @@ var rawTokens = []Token{
|
|||
EndElement{Name{"", "outer"}},
|
||||
CharData(strings.Bytes("\n ")),
|
||||
StartElement{Name{"tag", "name"}, nil},
|
||||
CharData(strings.Bytes("\n Some text here.\n ")),
|
||||
CharData(strings.Bytes("\n ")),
|
||||
CharData(strings.Bytes("Some text here.")),
|
||||
CharData(strings.Bytes("\n ")),
|
||||
EndElement{Name{"tag", "name"}},
|
||||
CharData(strings.Bytes("\n")),
|
||||
EndElement{Name{"", "body"}},
|
||||
|
|
@ -83,7 +85,9 @@ var cookedTokens = []Token{
|
|||
EndElement{Name{"ns2", "outer"}},
|
||||
CharData(strings.Bytes("\n ")),
|
||||
StartElement{Name{"ns3", "name"}, nil},
|
||||
CharData(strings.Bytes("\n Some text here.\n ")),
|
||||
CharData(strings.Bytes("\n ")),
|
||||
CharData(strings.Bytes("Some text here.")),
|
||||
CharData(strings.Bytes("\n ")),
|
||||
EndElement{Name{"ns3", "name"}},
|
||||
CharData(strings.Bytes("\n")),
|
||||
EndElement{Name{"ns2", "body"}},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue