aboutsummaryrefslogtreecommitdiff
path: root/cordova/node_modules/sax/test/issue-47.js
diff options
context:
space:
mode:
Diffstat (limited to 'cordova/node_modules/sax/test/issue-47.js')
-rwxr-xr-xcordova/node_modules/sax/test/issue-47.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/cordova/node_modules/sax/test/issue-47.js b/cordova/node_modules/sax/test/issue-47.js
new file mode 100755
index 0000000..911c7d0
--- /dev/null
+++ b/cordova/node_modules/sax/test/issue-47.js
@@ -0,0 +1,13 @@
+// https://github.com/isaacs/sax-js/issues/47
+require(__dirname).test
+ ( { xml : '<a href="query.svc?x=1&y=2&z=3"/>'
+ , expect : [
+ [ "attribute", { name:'href', value:"query.svc?x=1&y=2&z=3"} ],
+ [ "opentag", { name: "a", attributes: { href:"query.svc?x=1&y=2&z=3"} } ],
+ [ "closetag", "a" ]
+ ]
+ , strict : true
+ , opt : {}
+ }
+ )
+