'libs/chai',
'libs/sinon',
'modules/documentCanvas/canvas/canvas',
-'modules/documentCanvas/canvas/documentElement',
'modules/documentCanvas/canvas/utils',
'wlxml/wlxml'
-], function($, chai, sinon, canvas, documentElement, utils, wlxml) {
+], function($, chai, sinon, canvas, utils, wlxml) {
'use strict';
/* global describe, it, beforeEach, afterEach */
textFirst = findTextNode(dom, 'Alice'),
textSecond = findTextNode(dom, 'has a cat'),
textAbc = findTextNode(dom, 'abc'),
- textCde = findTextNode(dom, 'cde'),
- cursor, label;
+ textCde = findTextNode(dom, 'cde');
var check = function(label, expected) {
var cursor = c.getCursor();
expect(cursor.getSelectionStart().offset).to.equal(expected.start.offset, label + 'start offset ok');
expect(cursor.getSelectionEnd().element.getText()).to.equal(expected.end.text, label + 'end element ok');
expect(cursor.getSelectionEnd().offset).to.equal(expected.end.offset, label + 'end offset ok');
- }
+ };
getSelection.returns({
anchorNode: textFirst,