aboutsummaryrefslogtreecommitdiff
path: root/cordova/node_modules/sax/test/xmlns-unbound.js
diff options
context:
space:
mode:
Diffstat (limited to 'cordova/node_modules/sax/test/xmlns-unbound.js')
-rwxr-xr-xcordova/node_modules/sax/test/xmlns-unbound.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/cordova/node_modules/sax/test/xmlns-unbound.js b/cordova/node_modules/sax/test/xmlns-unbound.js
deleted file mode 100755
index 2944b87..0000000
--- a/cordova/node_modules/sax/test/xmlns-unbound.js
+++ /dev/null
@@ -1,15 +0,0 @@
-
-require(__dirname).test(
- { strict : true
- , opt : { xmlns: true }
- , expect :
- [ ["error", "Unbound namespace prefix: \"unbound\"\nLine: 0\nColumn: 28\nChar: >"]
-
- , [ "attribute", { name: "unbound:attr", value: "value", uri: "unbound", prefix: "unbound", local: "attr" } ]
- , [ "opentag", { name: "root", uri: "", prefix: "", local: "root",
- attributes: { "unbound:attr": { name: "unbound:attr", value: "value", uri: "unbound", prefix: "unbound", local: "attr" } },
- ns: {} } ]
- , [ "closetag", "root" ]
- ]
- }
-).write("<root unbound:attr='value'/>")