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

19 lines
383 B
JavaScript

require(__dirname).test({
xml: '<span id="hello" id="there"></span>',
expect: [
[ 'opentagstart', {
name: 'SPAN',
attributes: {}
} ],
[ 'attribute', { name: 'ID', value: 'hello' } ],
[ 'opentag', {
name: 'SPAN',
attributes: { ID: 'hello' },
isSelfClosing: false
} ],
[ 'closetag', 'SPAN' ]
],
strict: false,
opt: {}
})