CB-12621: reverted elementtree dep to 0.1.6

This commit is contained in:
Steve Gill
2017-04-02 17:11:17 -05:00
parent fc8cd37495
commit d2c71e7d75
53 changed files with 12331 additions and 1955 deletions

20
node_modules/sax/test/xmlns-xml-default-prefix.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
require(__dirname).test(
{ xml : "<xml:root/>"
, expect :
[
[ "opentag"
, { name: "xml:root"
, uri: "http://www.w3.org/XML/1998/namespace"
, prefix: "xml"
, local: "root"
, attributes: {}
, ns: {}
}
]
, ["closetag", "xml:root"]
]
, strict : true
, opt : { xmlns: true }
}
)