aboutsummaryrefslogtreecommitdiff
path: root/cordova/node_modules/sax/test/issue-35.js
diff options
context:
space:
mode:
Diffstat (limited to 'cordova/node_modules/sax/test/issue-35.js')
-rwxr-xr-xcordova/node_modules/sax/test/issue-35.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/cordova/node_modules/sax/test/issue-35.js b/cordova/node_modules/sax/test/issue-35.js
deleted file mode 100755
index 7c521c5..0000000
--- a/cordova/node_modules/sax/test/issue-35.js
+++ /dev/null
@@ -1,15 +0,0 @@
-// https://github.com/isaacs/sax-js/issues/35
-require(__dirname).test
- ( { xml : "<xml>&#Xd;&#X0d;\n"+
- "</xml>"
-
- , expect :
- [ [ "opentag", { name: "xml", attributes: {} } ]
- , [ "text", "\r\r\n" ]
- , [ "closetag", "xml" ]
- ]
- , strict : true
- , opt : {}
- }
- )
-