1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/fork-sax/test/issue-35.js

13 lines
336 B
JavaScript
Raw Normal View History

2020-11-05 18:58:23 +02:00
// https://github.com/isaacs/sax-js/issues/35
require(__dirname).test({
xml: '<xml>&#Xd;&#X0d;\n</xml>',
expect: [
[ 'opentagstart', { name: 'xml', attributes: {} } ],
[ 'opentag', { name: 'xml', attributes: {}, isSelfClosing: false } ],
[ 'text', '\r\r\n' ],
[ 'closetag', 'xml' ]
],
strict: true,
opt: {}
})