aboutsummaryrefslogtreecommitdiff
path: root/node_modules/sax/test/script-close-better.js
blob: f4887b9a053d13726ebbf0ae160ddd255cb821a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require(__dirname).test({
  xml : "<html><head><script>'<div>foo</div></'</script></head></html>",
  expect : [
    ["opentag", {"name": "HTML","attributes": {}, isSelfClosing: false}],
    ["opentag", {"name": "HEAD","attributes": {}, isSelfClosing: false}],
    ["opentag", {"name": "SCRIPT","attributes": {}, isSelfClosing: false}],
    ["script", "'<div>foo</div></'"],
    ["closetag", "SCRIPT"],
    ["closetag", "HEAD"],
    ["closetag", "HTML"]
  ]
});