mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-01 02:12:58 +08:00
21 lines
363 B
JavaScript
21 lines
363 B
JavaScript
|
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 }
|
||
|
}
|
||
|
)
|
||
|
|