mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
53 lines
947 B
JavaScript
53 lines
947 B
JavaScript
require(__dirname).test({
|
|
strict: true,
|
|
opt: { xmlns: true },
|
|
expect: [
|
|
[
|
|
'opentagstart',
|
|
{
|
|
name: 'root',
|
|
attributes: {},
|
|
ns: {}
|
|
}
|
|
],
|
|
[
|
|
'error',
|
|
'Unbound namespace prefix: "unbound"\nLine: 0\nColumn: 28\nChar: >'
|
|
],
|
|
[
|
|
'attribute',
|
|
{
|
|
name: 'unbound:attr',
|
|
value: 'value',
|
|
uri: 'unbound',
|
|
prefix: 'unbound',
|
|
local: 'attr'
|
|
}
|
|
],
|
|
[
|
|
'opentag',
|
|
{
|
|
name: 'root',
|
|
uri: '',
|
|
prefix: '',
|
|
local: 'root',
|
|
attributes: {
|
|
'unbound:attr': {
|
|
name: 'unbound:attr',
|
|
value: 'value',
|
|
uri: 'unbound',
|
|
prefix: 'unbound',
|
|
local: 'attr'
|
|
}
|
|
},
|
|
ns: {},
|
|
isSelfClosing: true
|
|
}
|
|
],
|
|
[
|
|
'closetag',
|
|
'root'
|
|
]
|
|
]
|
|
}).write("<root unbound:attr='value'/>")
|