wallet-core/node_modules/sax/test/duplicate-attribute.js

14 lines
354 B
JavaScript
Raw Normal View History

2016-11-03 01:33:53 +01:00
require(__dirname).test
( { xml :
"<span id=\"hello\" id=\"there\"></span>"
, expect :
[ [ "attribute", { name: "ID", value: "hello" } ]
, [ "opentag", { name: "SPAN",
attributes: { ID: "hello" }, isSelfClosing: false } ]
, [ "closetag", "SPAN" ]
]
, strict : false
, opt : {}
}
)