1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/packages/fork-sax/test/xmlns-xml-default-prefix-attribute.js
2020-11-05 16:58:23 +00:00

50 lines
871 B
JavaScript

require(__dirname).test({
xml: "<root xml:lang='en'/>",
expect: [
[
'opentagstart',
{
name: 'root',
attributes: {},
ns: {}
}
],
[
'attribute',
{
name: 'xml:lang',
local: 'lang',
prefix: 'xml',
uri: 'http://www.w3.org/XML/1998/namespace',
value: 'en'
}
],
[
'opentag',
{
name: 'root',
uri: '',
prefix: '',
local: 'root',
attributes: {
'xml:lang': {
name: 'xml:lang',
local: 'lang',
prefix: 'xml',
uri: 'http://www.w3.org/XML/1998/namespace',
value: 'en'
}
},
ns: {},
isSelfClosing: true
}
],
[
'closetag',
'root'
]
],
strict: true,
opt: { xmlns: true }
})