fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
refactoring: fromHTMLElement @ canvas, no need to pass canvas instance
[fnpeditor.git]
/
src
/
editor
/
modules
/
documentCanvas
/
canvas
/
canvas.test.js
diff --git
a/src/editor/modules/documentCanvas/canvas/canvas.test.js
b/src/editor/modules/documentCanvas/canvas/canvas.test.js
index
0f01486
..
67f59b6
100644
(file)
--- a/
src/editor/modules/documentCanvas/canvas/canvas.test.js
+++ b/
src/editor/modules/documentCanvas/canvas/canvas.test.js
@@
-3,10
+3,9
@@
define([
'libs/chai',
'libs/sinon',
'modules/documentCanvas/canvas/canvas',
'libs/chai',
'libs/sinon',
'modules/documentCanvas/canvas/canvas',
-'modules/documentCanvas/canvas/documentElement',
'modules/documentCanvas/canvas/utils',
'wlxml/wlxml'
'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 */
'use strict';
/* global describe, it, beforeEach, afterEach */
@@
-191,8
+190,7
@@
describe('Cursor', function() {
textFirst = findTextNode(dom, 'Alice'),
textSecond = findTextNode(dom, 'has a cat'),
textAbc = findTextNode(dom, 'abc'),
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();
var check = function(label, expected) {
var cursor = c.getCursor();
@@
-201,7
+199,7
@@
describe('Cursor', function() {
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');
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,
getSelection.returns({
anchorNode: textFirst,