aboutsummaryrefslogtreecommitdiff
path: root/node_modules/sax/test/cdata-chunked.js
blob: e3362bc8d51e25b1557cc477b4b22330f4cb6566 (plain)
1
2
3
4
5
6
7
8
9
10
11
require(__dirname).test({
  expect : [
    ["opentag", {"name": "R","attributes": {}, "isSelfClosing": false}],
    ["opencdata", undefined],
    ["cdata", " this is character data  "],
    ["closecdata", undefined],
    ["closetag", "R"]
  ]
}).write("<r><![CDATA[ this is ").write("character data  ").write("]]></r>").close();