Opened 13 years ago
Closed 13 years ago
#5828 closed defect (fixed)
DomParser ignore text node after a tag node
Reported by: | liucougar | Owned by: | liucougar |
---|---|---|---|
Priority: | high | Milestone: | 1.1 |
Component: | Dojox | Version: | 1.0 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
investigate the following output, there are only 2 children of the p tag, the last text node (with content 'x') is missing
console.log(dojox.xml.DomParser.parse("<p>a<u>b</u>x</p>"));
Attachments (2)
Change History (6)
Changed 13 years ago by
Attachment: | 5828.patch added |
---|
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
5828.2.patch fixes another bug: text node coming after a self closing tag is appended as child of the self closing tag
comment:3 Changed 13 years ago by
Owner: | changed from Tom Trenka to liucougar |
---|
comment:4 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
attached patch fixes the issue