Sha256: bc6cf7950121c4dab594e0e930645af8c25ec726ec25f3ccd24a8ec92ce7df63
Contents?: true
Size: 476 Bytes
Versions: 45
Compression:
Stored size: 476 Bytes
Contents
// stray ending tags should just be ignored in non-strict mode. // https://github.com/isaacs/sax-js/issues/32 require(__dirname).test ( { xml : "<a><b></c></b></a>" , expect : [ [ "opentag", { name: "A", attributes: {}, isSelfClosing: false } ] , [ "opentag", { name: "B", attributes: {}, isSelfClosing: false } ] , [ "text", "</c>" ] , [ "closetag", "B" ] , [ "closetag", "A" ] ] , strict : false , opt : {} } )
Version data entries
45 entries across 45 versions & 3 rubygems