Launch Tests
Clear Results
Exit
Results:
The test suite uses this XML defined in JavaScript. This demonstrates how the XML would appear on an HTML page in a text area. <?xml version="1.0"?> <ROOTNODE> <TAG1 name="foo"> tag1content </TAG1> <TAG2> 1 is <&> 2 </TAG2> <TAG3> <TAG4> tag4content </TAG4> </TAG3> <TAG5>tag5content</TAG5> <TAG6 nodeType="ELEMENT" id="4"> This child is of nodeType TEXT <!--This child is of nodeType COMMENT--> <![CDATA[this child is of <<<>nodeType CDATA]]> this child has a special < character that should come out escaped </TAG6> </ROOTNODE> Notice the escaped & in TAG2 above. This is an HTML escape and NOT an XML escape. The actual value in the text area is " 1 is <&> 2 " Keeping these escaped characters correct is one of the larger challenges in getting the XML to the client side