diff options
Diffstat (limited to 'cordova/node_modules/sax/test/self-closing-child-strict.js')
| -rwxr-xr-x | cordova/node_modules/sax/test/self-closing-child-strict.js | 40 |
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 : {} -}); - |
