issue-35.js 331 B

123456789101112131415
  1. // https://github.com/isaacs/sax-js/issues/35
  2. require(__dirname).test
  3. ( { xml : "<xml>&#Xd;&#X0d;\n"+
  4. "</xml>"
  5. , expect :
  6. [ [ "opentag", { name: "xml", attributes: {}, isSelfClosing: false } ]
  7. , [ "text", "\r\r\n" ]
  8. , [ "closetag", "xml" ]
  9. ]
  10. , strict : true
  11. , opt : {}
  12. }
  13. )