wallet-core/node_modules/sax/test/script-close-better.js

13 lines
461 B
JavaScript
Raw Normal View History

2016-11-03 01:33:53 +01:00
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"]
]
});