aboutsummaryrefslogtreecommitdiff
path: root/cordova/node_modules/sax/test/self-closing-child-strict.js
diff options
context:
space:
mode:
Diffstat (limited to 'cordova/node_modules/sax/test/self-closing-child-strict.js')
-rwxr-xr-xcordova/node_modules/sax/test/self-closing-child-strict.js40
1 files changed, 0 insertions, 40 deletions
diff --git a/cordova/node_modules/sax/test/self-closing-child-strict.js b/cordova/node_modules/sax/test/self-closing-child-strict.js
deleted file mode 100755
index ce9c045..0000000
--- a/cordova/node_modules/sax/test/self-closing-child-strict.js
+++ /dev/null
@@ -1,40 +0,0 @@
-
-require(__dirname).test({
- xml :
- "<root>"+
- "<child>" +
- "<haha />" +
- "</child>" +
- "<monkey>" +
- "=(|)" +
- "</monkey>" +
- "</root>",
- expect : [
- ["opentag", {
- "name": "root",
- "attributes": {}
- }],
- ["opentag", {
- "name": "child",
- "attributes": {}
- }],
- ["opentag", {
- "name": "haha",
- "attributes": {}
- }],
- ["closetag", "haha"],
- ["closetag", "child"],
- ["opentag", {
- "name": "monkey",
- "attributes": {}
- }],
- ["text", "=(|)"],
- ["closetag", "monkey"],
- ["closetag", "root"],
- ["end"],
- ["ready"]
- ],
- strict : true,
- opt : {}
-});
-