aboutsummaryrefslogtreecommitdiff
path: root/cordova/node_modules/sax/test/cdata-end-split.js
blob: b41bd00e2420ee3cbb921f3c8c0ce41975fdc299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require(__dirname).test({
  expect : [
    ["opentag", {"name": "R","attributes": {}}],
    ["opencdata", undefined],
    ["cdata", " this is "],
    ["closecdata", undefined],
    ["closetag", "R"]
  ]
})
  .write("<r><![CDATA[ this is ]")
  .write("]>")
  .write("</r>")
  .close();