// stray ending tags should just be ignored in non-strict mode. // https://github.com/isaacs/sax-js/issues/32 require(__dirname).test ( { xml : "" , expect : [ [ "opentag", { name: "A", attributes: {} } ] , [ "opentag", { name: "B", attributes: {} } ] , [ "text", "" ] , [ "closetag", "B" ] , [ "closetag", "A" ] ] , strict : false , opt : {} } )