diff options
Diffstat (limited to 'node_modules/sax/test/issue-84.js')
-rw-r--r-- | node_modules/sax/test/issue-84.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/node_modules/sax/test/issue-84.js b/node_modules/sax/test/issue-84.js deleted file mode 100644 index 0e7ee699a..000000000 --- a/node_modules/sax/test/issue-84.js +++ /dev/null @@ -1,13 +0,0 @@ -// https://github.com/isaacs/sax-js/issues/49 -require(__dirname).test - ( { xml : "<?has unbalanced \"quotes?><xml>body</xml>" - , expect : - [ [ "processinginstruction", { name: "has", body: "unbalanced \"quotes" } ], - [ "opentag", { name: "xml", attributes: {}, isSelfClosing: false } ] - , [ "text", "body" ] - , [ "closetag", "xml" ] - ] - , strict : false - , opt : { lowercasetags: true, noscript: true } - } - ) |