script-close-better.js 461 B

123456789101112
  1. require(__dirname).test({
  2. xml : "<html><head><script>'<div>foo</div></'</script></head></html>",
  3. expect : [
  4. ["opentag", {"name": "HTML","attributes": {}, isSelfClosing: false}],
  5. ["opentag", {"name": "HEAD","attributes": {}, isSelfClosing: false}],
  6. ["opentag", {"name": "SCRIPT","attributes": {}, isSelfClosing: false}],
  7. ["script", "'<div>foo</div></'"],
  8. ["closetag", "SCRIPT"],
  9. ["closetag", "HEAD"],
  10. ["closetag", "HTML"]
  11. ]
  12. });