DOH log needs to escape XML
see #7189. The output stripped out tags in the content of the query test upon failure.
var doc = dojox.data.dom.createDocument(["","One","Two","Three","Four",""].join(""));
should look like
var doc = dojox.data.dom.createDocument([
"<ResultSet>",
"<Result>One</Result>",
"<RESULT>Two</RESULT>",
"<result>Three</result>",
"<result>Four</result>",
"</ResultSet>"
].join("")
);
Change History (8)
Owner: |
changed from alex to Mike Wilcox
|
Description: |
modified (diff)
|
Summary: |
DOH console needs to escape XML →
DOH log needs to escape XML
|
Description: |
modified (diff)
|
Resolution: |
→ fixed
|
Status: |
new →
closed
|
Resolution: |
fixed
|
Status: |
closed →
reopened
|
Milestone: |
tbd →
1.2
|
Owner: |
changed from Mike Wilcox to Adam Peller
|
Status: |
reopened →
new
|
Resolution: |
→ fixed
|
Status: |
new →
closed
|
tests/_base/query.html has strings like
on the console, all we see when it prints out the function source is "foo"