You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Areas/SoftMng/Content/simditor-master/spec/buttons/bold-spec.js

47 lines
1.4 KiB
JavaScript

(function() {
describe('Simditor bold button', function() {
var editor;
editor = null;
beforeEach(function() {
return editor = spec.generateSimditor({
content: '<p>bold text</p>',
toolbar: ['bold']
});
});
afterEach(function() {
spec.destroySimditor();
return editor = null;
});
it('should set selection bold after clicking', function() {
var $b, $p, $text, button, range;
editor.focus();
button = editor.toolbar.findButton('bold');
$p = editor.body.find('p:first');
$text = $p.contents().first();
range = document.createRange();
range.setStart($text[0], 0);
range.setEnd($text[0], 4);
editor.selection.range(range);
button.command();
$b = $p.find('b');
expect($b.length).toBe(1);
return expect($b.text()).toBe('bold');
});
return it('should be active when selection inside b tag', function() {
var $b, button, range;
editor.setValue('<p><b>bold</b> text</p>');
editor.focus();
$b = editor.body.find('b');
range = document.createRange();
range.setStart($b[0], 1);
range.setEnd($b[0], 1);
editor.selection.range(range);
editor.inputManager.focused = true;
editor.trigger('selectionchanged');
button = editor.toolbar.findButton('bold');
return expect(button.active).toBe(true);
});
});
}).call(this);