wallet-core/node_modules/sax/test/cdata-end-split.js
2016-11-03 01:33:53 +01:00

16 lines
311 B
JavaScript

require(__dirname).test({
expect : [
["opentag", {"name": "R","attributes": {}, "isSelfClosing": false}],
["opencdata", undefined],
["cdata", " this is "],
["closecdata", undefined],
["closetag", "R"]
]
})
.write("<r><![CDATA[ this is ]")
.write("]>")
.write("</r>")
.close();