cordova-android/node_modules/sax/test/trailing-non-whitespace.js

18 lines
307 B
JavaScript
Raw Normal View History

2016-01-21 09:07:33 +08:00
require(__dirname).test({
xml : "<span>Welcome,</span> to monkey land",
expect : [
["opentag", {
"name": "SPAN",
"attributes": {}
}],
["text", "Welcome,"],
["closetag", "SPAN"],
["text", " to monkey land"],
["end"],
["ready"]
],
strict : false,
opt : {}
});