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

15 lines
514 B
JavaScript

require(__dirname).test({
expect: [
['opentagstart', {'name': 'R', 'attributes': {}}],
['opentag', {'name': 'R', 'attributes': {}, 'isSelfClosing': false}],
['opencdata', undefined],
['cdata', ' this is '],
['closecdata', undefined],
['opencdata', undefined],
['cdata', 'character data  '],
['closecdata', undefined],
['closetag', 'R']
]
}).write('<r><![CDATA[ this is ]]>').write('<![CDA').write('T').write('A[')
.write('character data  ').write(']]></r>').close()