mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-01 01:42:58 +08:00
16 lines
309 B
JavaScript
16 lines
309 B
JavaScript
// https://github.com/isaacs/sax-js/issues/35
|
|
require(__dirname).test
|
|
( { xml : "<xml>

\n"+
|
|
"</xml>"
|
|
|
|
, expect :
|
|
[ [ "opentag", { name: "xml", attributes: {} } ]
|
|
, [ "text", "\r\r\n" ]
|
|
, [ "closetag", "xml" ]
|
|
]
|
|
, strict : true
|
|
, opt : {}
|
|
}
|
|
)
|
|
|