X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/9c5db1c241bd7d0ff38354790dd9fbd43549cd4d..d67ed5177c7b434beb026aab16a91333e295a914:/modules/documentCanvas/canvas/canvas.test3.js?ds=sidebyside
diff --git a/modules/documentCanvas/canvas/canvas.test3.js b/modules/documentCanvas/canvas/canvas.test3.js
index 3c25cf5..e122a1a 100644
--- a/modules/documentCanvas/canvas/canvas.test3.js
+++ b/modules/documentCanvas/canvas/canvas.test3.js
@@ -11,6 +11,30 @@ var expect = chai.expect;
describe('Canvas', function() {
+ describe('Internal HTML representation of a sample document', function() {
+ it('works', function() {
+ var c = canvas.fromXML('\
+ \
+ This is some text without its own wrapping tag.\
+ \
+ This is a paragraph.\
+
\
+ \
+ This is text in a div with some inline text.\
+
\
+ This is some text without its own wrapping tag.\
+ \
+ ');
+ var expected = '
'
+ + 'This is some text without its own wrapping tag.'
+ + '
This is a paragraph.
'
+ + '
This is text in a div
with some inline text
.
'
+ + 'This is some text without its own wrapping tag.'
+ + '
';
+ expect(c.doc().dom()[0].isEqualNode($(expected)[0])).to.be.true;
+ });
+ });
+
describe('Internal HTML representation of a DocumentNodeElement', function() {
it('is always a div tag', function() {
['section', 'header', 'span', 'aside', 'figure'].forEach(function(tagName) {
@@ -162,6 +186,7 @@ describe('Canvas', function() {
var c = canvas.fromXML('');
expect(c.doc().children().length).to.equal(1);
expect(c.doc().children()[0]).to.be.instanceOf(documentElement.DocumentTextElement);
+ expect(c.doc().children()[0].getText()).to.equal(' ');
});
it('ignores white space surrounding block elements', function() {
var c = canvas.fromXML('');
@@ -415,6 +440,9 @@ describe('Canvas', function() {
var list = section.children()[0];
expect(list.is('list')).to.equal(true, 'section\'s only child is a list');
expect(list.children().length).to.equal(4, 'list contains four elements');
+ list.children().forEach(function(child) {
+ expect(child.getWlxmlClass()).to.equal('item', 'list childs have wlxml class of item');
+ });
});
});