| OLD | NEW |
| 1 PASS "createCDATASection" in window.xmlDoc is true | 1 PASS "createCDATASection" in window.xmlDoc is true |
| 2 PASS window.xmlDoc.createCDATASection("Hello").data is "Hello" | 2 PASS window.xmlDoc.createCDATASection("Hello").data is "Hello" |
| 3 PASS window.xmlDoc.createCDATASection("Ha]]>o") threw exception InvalidCharacter
Error: String cannot contain ']]>' since that is the end delimiter of a CData se
ction.. | 3 PASS window.xmlDoc.createCDATASection("Ha]]>o") threw exception InvalidCharacter
Error: Failed to execute 'createCDATASection' on 'Document': String cannot conta
in ']]>' since that is the end delimiter of a CData section.. |
| 4 PASS window.xmlDoc.createCDATASection(null).data is "null" | 4 PASS window.xmlDoc.createCDATASection(null).data is "null" |
| 5 PASS successfullyParsed is true | 5 PASS successfullyParsed is true |
| 6 | 6 |
| 7 TEST COMPLETE | 7 TEST COMPLETE |
| 8 | 8 |
| OLD | NEW |