module("tinymce.plugins.Lists", {
setupModule: function() {
document.getElementById('view').innerHTML = '
';
QUnit.stop();
function wait() {
if (window.editor && window.inlineEditor) {
if (!QUnit.started) {
QUnit.start();
QUnit.started = true;
}
} else {
setTimeout(wait, 0);
}
}
tinymce.init({
selector: '#elm1',
plugins: wpPlugins,
add_unload_trigger: false,
skin: false,
indent: false,
schema: 'html5',
entities: 'raw',
valid_elements: 'li,ol,ul,dl,dt,dd,em,strong,span,#p,div,br',
valid_styles: {
'*': 'color,font-size,font-family,background-color,font-weight,font-style,text-decoration,float,margin,margin-top,margin-right,margin-bottom,margin-left,display,position,top,left'
},
disable_nodechange: true,
init_instance_callback: function(ed) {
window.editor = ed;
wait();
}
});
tinymce.init({
selector: '#elm2',
inline: true,
add_unload_trigger: false,
skin: false,
plugins: "lists",
disable_nodechange: true,
init_instance_callback: function(ed) {
window.inlineEditor = ed;
wait();
}
});
},
teardown: function() {
editor.settings.forced_root_block = 'p';
}
});
function trimBrs(html) {
return html.toLowerCase().replace(/
]*>|[\r\n]+/gi, '');
}
function execCommand(cmd) {
if (editor.editorCommands.hasCustomCommand(cmd)) {
editor.execCommand(cmd);
}
}
test('Apply UL list to single P', function() {
editor.getBody().innerHTML = trimBrs(
'a
'
);
editor.focus();
Utils.setSelection('p', 0);
execCommand('InsertUnorderedList');
equal(editor.getContent(), '');
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Apply UL list to single empty P', function() {
editor.getBody().innerHTML = trimBrs(
'
'
);
editor.focus();
Utils.setSelection('p', 0);
execCommand('InsertUnorderedList');
equal(trimBrs(editor.getContent({format: 'raw'})), '');
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Apply UL list to multiple Ps', function() {
editor.getBody().innerHTML = trimBrs(
'a
' +
'b
' +
'c
'
);
editor.focus();
Utils.setSelection('p', 0, 'p:last', 0);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
''
);
equal(editor.selection.getStart().nodeName, 'LI');
});
test('Apply OL list to single P', function() {
editor.getBody().innerHTML = trimBrs(
'a
'
);
editor.focus();
Utils.setSelection('p', 0);
execCommand('InsertOrderedList');
equal(editor.getContent(), '- a
');
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Apply OL list to single empty P', function() {
editor.getBody().innerHTML = trimBrs(
'
'
);
editor.focus();
Utils.setSelection('p', 0);
execCommand('InsertOrderedList');
equal(trimBrs(editor.getContent({format: 'raw'})), '
');
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Apply OL list to multiple Ps', function() {
editor.getBody().innerHTML = trimBrs(
'a
' +
'b
' +
'c
'
);
editor.focus();
Utils.setSelection('p', 0, 'p:last', 0);
execCommand('InsertOrderedList');
equal(editor.getContent(),
'' +
'- a
' +
'- b
' +
'- c
' +
'
'
);
equal(editor.selection.getStart().nodeName, 'LI');
});
test('Apply OL to UL list', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li', 0, 'li:last', 0);
execCommand('InsertOrderedList');
equal(editor.getContent(),
'' +
'- a
' +
'- b
' +
'- c
' +
'
'
);
equal(editor.selection.getStart().nodeName, 'LI');
});
test('Apply OL to UL list with collapsed selection', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li:nth-child(2)');
execCommand('InsertOrderedList');
equal(editor.getContent(),
'' +
'- a
' +
'- b
' +
'- c
' +
'
'
);
equal(editor.selection.getStart().nodeName, 'LI');
});
test('Apply UL to OL list', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'- b
' +
'- c
' +
'
'
);
editor.focus();
Utils.setSelection('li', 0, 'li:last', 0);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
''
);
equal(editor.selection.getStart().nodeName, 'LI');
});
test('Apply UL to OL list collapsed selection', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'- b
' +
'- c
' +
'
'
);
editor.focus();
Utils.setSelection('li:nth-child(2)');
execCommand('InsertUnorderedList');
equal(editor.getContent(),
''
);
equal(editor.selection.getStart().nodeName, 'LI');
});
test('Apply UL to P and merge with adjacent lists', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'b
' +
''
);
editor.focus();
Utils.setSelection('p', 1);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
''
);
equal(editor.selection.getStart().nodeName, 'LI');
});
test('Apply UL to OL and merge with adjacent lists', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- b
' +
''
);
editor.focus();
Utils.setSelection('ol li', 1);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
''
);
equal(editor.selection.getStart().nodeName, 'LI');
});
test('Apply OL to P and merge with adjacent lists', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'
' +
'b
' +
'' +
'- c
' +
'
'
);
editor.focus();
Utils.setSelection('p', 1);
execCommand('InsertOrderedList');
equal(editor.getContent(),
'' +
'- a
' +
'- b
' +
'- c
' +
'
'
);
equal(editor.selection.getStart().nodeName, 'LI');
});
test('Apply OL to UL and merge with adjacent lists', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'
' +
'' +
'' +
'- c
' +
'
'
);
editor.focus();
Utils.setSelection('ul li', 1);
execCommand('InsertOrderedList');
equal(editor.getContent(),
'' +
'- a
' +
'- b
' +
'- c
' +
'
'
);
equal(editor.selection.getStart().nodeName, 'LI');
});
test('Apply UL list to single text line', function() {
editor.settings.forced_root_block = false;
editor.getBody().innerHTML = (
'a'
);
editor.focus();
Utils.setSelection('body', 0);
execCommand('InsertUnorderedList');
equal(editor.getContent(), '');
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Apply UL list to single text line with BR', function() {
editor.settings.forced_root_block = false;
editor.getBody().innerHTML = (
'a
'
);
editor.focus();
Utils.setSelection('body', 0);
execCommand('InsertUnorderedList');
equal(editor.getContent(), '');
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Apply UL list to multiple lines separated by BR', function() {
editor.settings.forced_root_block = false;
editor.getBody().innerHTML = (
'a
' +
'b
' +
'c'
);
editor.focus();
editor.execCommand('SelectAll');
execCommand('InsertUnorderedList');
equal(editor.getContent(),
''
);
equal(editor.selection.getStart().nodeName, 'LI');
});
test('Apply UL list to multiple lines separated by BR and with trailing BR', function() {
editor.settings.forced_root_block = false;
editor.getBody().innerHTML = (
'a
' +
'b
' +
'c
'
);
editor.focus();
editor.execCommand('SelectAll');
execCommand('InsertUnorderedList');
equal(editor.getContent(),
''
);
equal(editor.selection.getStart().nodeName, 'LI');
});
test('Apply UL list to multiple formatted lines separated by BR', function() {
editor.settings.forced_root_block = false;
editor.getBody().innerHTML = (
'a
' +
'b
' +
'c'
);
editor.focus();
Utils.setSelection('strong', 0, 'em', 0);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
''
);
equal(editor.selection.getStart().nodeName, 'STRONG');
equal(editor.selection.getEnd().nodeName, tinymce.Env.ie && tinymce.Env.ie < 9 ? 'LI' : 'EM'); // Old IE will return the end LI not a big deal
});
// Ignore on IE 7, 8 this is a known bug not worth fixing
if (!tinymce.Env.ie || tinymce.Env.ie > 8) {
test('Apply UL list to br line and text block line', function() {
editor.settings.forced_root_block = false;
editor.setContent(
'a' +
'b
'
);
var rng = editor.dom.createRng();
rng.setStart(editor.getBody().firstChild, 0);
rng.setEnd(editor.getBody().lastChild.firstChild, 1);
editor.selection.setRng(rng);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
''
);
equal(editor.selection.getStart().nodeName, 'LI');
equal(editor.selection.getEnd().nodeName, 'LI');
});
}
test('Apply UL list to text block line and br line', function() {
editor.settings.forced_root_block = false;
editor.getBody().innerHTML = (
'a
' +
'b'
);
editor.focus();
var rng = editor.dom.createRng();
rng.setStart(editor.getBody().firstChild.firstChild, 0);
rng.setEnd(editor.getBody().lastChild, 1);
editor.selection.setRng(rng);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
''
);
equal(editor.selection.getStart().nodeName, 'LI');
equal(editor.selection.getEnd().nodeName, 'LI');
});
test('Apply UL list to all BR lines (SelectAll)', function() {
editor.settings.forced_root_block = false;
editor.getBody().innerHTML = (
'a
' +
'b
' +
'c
'
);
editor.focus();
editor.execCommand('SelectAll');
execCommand('InsertUnorderedList');
equal(editor.getContent(),
''
);
});
test('Apply UL list to all P lines (SelectAll)', function() {
editor.getBody().innerHTML = (
'a
' +
'b
' +
'c
'
);
editor.focus();
editor.execCommand('SelectAll');
execCommand('InsertUnorderedList');
equal(editor.getContent(),
''
);
});
// Remove
test('Remove UL at single LI', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li');
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'a
'
);
equal(editor.selection.getStart().nodeName, 'P');
});
test('Remove UL at start LI', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li');
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'a
' +
''
);
equal(editor.selection.getStart().nodeName, 'P');
});
test('Remove UL at start empty LI', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li');
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'\u00a0
' +
''
);
equal(editor.selection.getNode().nodeName, 'P');
});
test('Remove UL at middle LI', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li:nth-child(2)', 1);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'' +
'b
' +
''
);
equal(editor.selection.getStart().nodeName, 'P');
});
test('Remove UL at middle empty LI', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li:nth-child(2)', 0);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'' +
'\u00a0
' +
''
);
equal(editor.selection.getNode().nodeName, 'P');
});
test('Remove UL at end LI', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li:last', 1);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'' +
'c
'
);
equal(editor.selection.getStart().nodeName, 'P');
});
test('Remove UL at end empty LI', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li:last', 0);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'' +
'\u00a0
'
);
equal(editor.selection.getNode().nodeName, 'P');
});
test('Remove UL at middle LI inside parent OL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'' +
'- e
' +
'
'
);
editor.focus();
Utils.setSelection('ul li:nth-child(2)', 1);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'' +
'- a
' +
'' +
'
' +
'c
' +
'' +
'' +
'- e
' +
'
'
);
equal(editor.selection.getStart().nodeName, 'P');
});
test('Remove UL at middle LI inside parent OL (html5)', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a' +
'' +
'
' +
'- e
' +
'
'
);
editor.focus();
Utils.setSelection('ul li:nth-child(2)', 1);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'' +
'- a' +
'' +
'
' +
'
' +
'c
' +
'' +
'- ' +
'' +
'
' +
'- e
' +
'
'
);
equal(editor.selection.getStart().nodeName, 'P');
});
test('Remove UL with single LI in BR mode', function() {
editor.settings.forced_root_block = false;
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li', 1);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'a'
);
equal(editor.selection.getStart().nodeName, 'BODY');
});
test('Remove UL with multiple LI in BR mode', function() {
editor.settings.forced_root_block = false;
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li:first', 1, 'li:last', 1);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'a
' +
'b'
);
equal(editor.selection.getStart().nodeName, 'BODY');
});
test('Remove empty UL between two textblocks', function() {
editor.getBody().innerHTML = trimBrs(
'a
' +
'' +
'b
'
);
editor.focus();
Utils.setSelection('li:first', 0);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'a
' +
'\u00a0
' +
'b
'
);
equal(editor.selection.getNode().nodeName, 'P');
});
test('Remove indented list with single item', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a' +
'' +
'
' +
'- c
' +
'
'
);
editor.focus();
Utils.setSelection('li li', 0, 'li li', 1);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'' +
'b
' +
''
);
equal(editor.selection.getNode().nodeName, 'P');
});
test('Remove indented list with multiple items', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a' +
'' +
'
' +
'- d
' +
'
'
);
editor.focus();
Utils.setSelection('li li:first', 0, 'li li:last', 1);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'' +
'b
' +
'c
' +
''
);
equal(editor.selection.getStart().firstChild.data, 'b');
equal(editor.selection.getEnd().firstChild.data, 'c');
});
// Ignore on IE 7, 8 this is a known bug not worth fixing
if (!tinymce.Env.ie || tinymce.Env.ie > 8) {
test('Remove empty UL between two textblocks in BR mode', function() {
editor.settings.forced_root_block = false;
editor.getBody().innerHTML = trimBrs(
'a
' +
'' +
'b
'
);
editor.focus();
Utils.setSelection('li:first', 0);
execCommand('InsertUnorderedList');
equal(editor.getContent(),
'a
' +
'
' +
'b
'
);
equal(editor.selection.getStart().nodeName, 'BR');
});
}
// Outdent
test('Outdent inside LI in beginning of OL in LI', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a' +
'
' +
'- b
' +
'- c
' +
'
' +
' ' +
'
'
);
editor.focus();
Utils.setSelection('li li', 1);
execCommand('Outdent');
equal(editor.getContent(),
'' +
'- a
' +
'- b' +
'
' +
'- c
' +
'
' +
' ' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Outdent inside LI in middle of OL in LI', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a' +
'
' +
'- b
' +
'- c
' +
'- d
' +
'
' +
' ' +
'
'
);
editor.focus();
Utils.setSelection('li li:nth-child(2)', 1);
execCommand('Outdent');
equal(editor.getContent(),
'' +
'- a' +
'
' +
'- b
' +
'
' +
' ' +
'- c' +
'
' +
'- d
' +
'
' +
' ' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Outdent inside LI in end of OL in LI', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a' +
'
' +
'- b
' +
'- c
' +
'
' +
' ' +
'
'
);
editor.focus();
Utils.setSelection('li li:last', 1);
execCommand('Outdent');
equal(editor.getContent(),
'' +
'- a' +
'
' +
'- b
' +
'
' +
' ' +
'- c
' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
// Nested lists in OL elements
test('Outdent inside LI in beginning of OL in OL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'' +
'- b
' +
'- c
' +
'
' +
'
'
);
editor.focus();
Utils.setSelection('ol ol li', 1);
execCommand('Outdent');
equal(editor.getContent(),
'' +
'- a
' +
'- b
' +
'' +
'- c
' +
'
' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Outdent inside LI in middle of OL in OL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'' +
'- b
' +
'- c
' +
'- d
' +
'
' +
'
'
);
editor.focus();
Utils.setSelection('ol ol li:nth-child(2)', 1);
execCommand('Outdent');
equal(editor.getContent(),
'' +
'- a
' +
'' +
'- b
' +
'
' +
'- c
' +
'' +
'- d
' +
'
' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Outdent inside first/last LI in inner OL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- 1' +
'
' +
'- 2
' +
'- 3
' +
'
' +
' ' +
'- 4
' +
'
'
);
editor.focus();
Utils.setSelection('ol ol li:nth-child(1)', 0, 'ol ol li:nth-child(2)', 1);
execCommand('Outdent');
equal(editor.getContent(),
'' +
'- 1
' +
'- 2
' +
'- 3
' +
'- 4
' +
'
'
);
equal(editor.selection.getRng(true).startContainer.nodeValue, '2');
equal(editor.selection.getRng(true).endContainer.nodeValue, '3');
});
test('Outdent inside first LI in inner OL where OL is single child of parent LI', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'- ' +
'
' +
'- b
' +
'- c
' +
'
' +
' ' +
'
'
);
editor.focus();
Utils.setSelection('ol ol li:first', 0);
execCommand('Outdent');
equal(editor.getContent(),
'' +
'- a
' +
'- b' +
'
' +
'- c
' +
'
' +
' ' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Outdent inside LI in end of OL in OL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'' +
'- b
' +
'- c
' +
'
' +
'
'
);
editor.focus();
Utils.setSelection('ol ol li:last', 1);
execCommand('Outdent');
equal(editor.getContent(),
'' +
'- a
' +
'' +
'- b
' +
'
' +
'- c
' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Outdent inside only child LI in OL in OL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a' +
'
' +
'- b
' +
'
' +
' ' +
'
'
);
editor.focus();
Utils.setSelection('ol ol li', 0);
execCommand('Outdent');
equal(editor.getContent(),
'' +
'- a
' +
'- b
' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Outdent multiple LI in OL and nested OL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a' +
'
' +
'- b
' +
'
' +
' ' +
'
'
);
editor.focus();
Utils.setSelection('li', 0, 'li li', 1);
execCommand('Outdent');
equal(editor.getContent(),
'a
' +
'' +
'- b
' +
'
'
);
});
// Indent
test('Indent single LI in OL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'
'
);
editor.focus();
Utils.setSelection('li', 0);
execCommand('Indent');
equal(editor.getContent(),
'' +
'- a
' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Indent middle LI in OL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'- b
' +
'- c
' +
'
'
);
editor.focus();
Utils.setSelection('li:nth-child(2)', 0);
execCommand('Indent');
equal(editor.getContent(),
'' +
'- a' +
'
' +
'- b
' +
'
' +
' ' +
'- c
' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Indent last LI in OL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'- b
' +
'
'
);
editor.focus();
Utils.setSelection('li:last', 0);
execCommand('Indent');
equal(editor.getContent(),
'' +
'- a' +
'
' +
'- b
' +
'
' +
' ' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Indent last LI to same level as middle LI', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a' +
'
' +
'- b
' +
'
' +
' ' +
'- c
' +
'
'
);
editor.focus();
Utils.setSelection('li:last', 1);
execCommand('Indent');
equal(editor.getContent(),
'' +
'- a' +
'
' +
'- b
' +
'- c
' +
'
' +
' ' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Indent first LI and nested LI OL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a' +
'
' +
'- b
' +
'
' +
' ' +
'
'
);
editor.focus();
Utils.setSelection('li', 0, 'li li', 0);
execCommand('Indent');
equal(editor.getContent(),
'' +
'- a' +
'
' +
'- b
' +
'
' +
' ' +
'
'
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Indent second LI to same level as nested LI', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'- b' +
'' +
'
' +
'
'
);
editor.focus();
Utils.setSelection('li:nth-child(2)', 0);
execCommand('Indent');
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Indent second LI to same level as nested LI 2', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a' +
'' +
'
' +
'- cd' +
'' +
'
' +
'
'
);
editor.focus();
Utils.setSelection('li:nth-child(2)', 1);
execCommand('Indent');
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Indent second and third LI', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li:nth-child(2)', 0, 'li:last', 0);
execCommand('Indent');
equal(editor.getContent(),
''
);
});
// Backspace
test('Backspace at beginning of single LI in UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
'a
'
);
equal(editor.selection.getNode().nodeName, 'P');
});
test('Backspace at beginning of first LI in UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
'a
' +
''
);
equal(editor.selection.getNode().nodeName, 'P');
});
test('Backspace at beginning of middle LI in UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li:nth-child(2)', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Backspace at beginning of start LI in UL inside UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li li', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Backspace at beginning of middle LI in UL inside UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li li:nth-child(2)', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Backspace at beginning of single LI in UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
'a
'
);
equal(editor.selection.getNode().nodeName, 'P');
});
test('Backspace at beginning of first LI in UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
'a
' +
''
);
equal(editor.selection.getNode().nodeName, 'P');
});
test('Backspace at beginning of middle LI in UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li:nth-child(2)', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Backspace at beginning of start LI in UL inside UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li li', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Backspace at beginning of middle LI in UL inside UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li li:nth-child(2)', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Backspace at beginning of LI with empty LI above in UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li:nth-child(3)', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().innerHTML, 'b');
});
test('Backspace at beginning of LI with BR padded empty LI above in UL', function() {
editor.getBody().innerHTML = (
''
);
editor.focus();
Utils.setSelection('li:nth-child(3)', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().innerHTML, 'b');
});
test('Backspace at empty LI (IE)', function() {
editor.getBody().innerHTML = (
''
);
editor.focus();
Utils.setSelection('li:nth-child(2)', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().innerHTML, 'a');
});
test('Backspace at beginning of LI with empty LI with STRING and BR above in UL', function() {
editor.getBody().innerHTML = (
''
);
editor.focus();
Utils.setSelection('li:nth-child(3)', 0);
editor.plugins.lists.backspaceDelete();
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().innerHTML, 'b');
});
// Delete
test('Delete at end of single LI in UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li', 1);
editor.plugins.lists.backspaceDelete(true);
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Delete at end of first LI in UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li', 1);
editor.plugins.lists.backspaceDelete(true);
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Delete at end of middle LI in UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li:nth-child(2)', 1);
editor.plugins.lists.backspaceDelete(true);
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Delete at end of start LI in UL inside UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li li', 1);
editor.plugins.lists.backspaceDelete(true);
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Delete at end of middle LI in UL inside UL', function() {
editor.getBody().innerHTML = trimBrs(
''
);
editor.focus();
Utils.setSelection('li li:nth-child(2)', 1);
editor.plugins.lists.backspaceDelete(true);
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().nodeName, 'LI');
});
test('Delete at end of LI before empty LI', function() {
editor.getBody().innerHTML = (
''
);
editor.focus();
Utils.setSelection('li', 1);
editor.plugins.lists.backspaceDelete(true);
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().innerHTML, 'a');
});
test('Delete at end of LI before BR padded empty LI', function() {
editor.getBody().innerHTML = (
''
);
editor.focus();
Utils.setSelection('li', 1);
editor.plugins.lists.backspaceDelete(true);
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().innerHTML, 'a');
});
test('Delete at end of LI before empty LI with STRONG', function() {
editor.getBody().innerHTML = (
''
);
editor.focus();
Utils.setSelection('li', 1);
editor.plugins.lists.backspaceDelete(true);
equal(editor.getContent(),
''
);
equal(editor.selection.getNode().innerHTML, 'a');
});
test('Remove UL in inline body element contained in LI', function() {
inlineEditor.setContent('');
inlineEditor.selection.setCursorLocation();
inlineEditor.execCommand('InsertUnorderedList');
equal(inlineEditor.getContent(), 'a
');
});
test('Backspace in LI in UL in inline body element contained within LI', function() {
inlineEditor.setContent('');
inlineEditor.focus();
inlineEditor.selection.select(inlineEditor.getBody(), true);
inlineEditor.selection.collapse(true);
inlineEditor.plugins.lists.backspaceDelete();
equal(inlineEditor.getContent(), 'a
');
});
test('Apply DL list to multiple Ps', function() {
editor.getBody().innerHTML = trimBrs(
'a
' +
'b
' +
'c
'
);
editor.focus();
Utils.setSelection('p', 0, 'p:last', 0);
execCommand('InsertDefinitionList');
equal(editor.getContent(),
'' +
'- a
' +
'- b
' +
'- c
' +
'
'
);
equal(editor.selection.getStart().nodeName, 'DT');
});
test('Apply OL list to single P', function() {
editor.getBody().innerHTML = trimBrs(
'a
'
);
editor.focus();
Utils.setSelection('p', 0);
execCommand('InsertDefinitionList');
equal(editor.getContent(), '- a
');
equal(editor.selection.getNode().nodeName, 'DT');
});
test('Apply DL to P and merge with adjacent lists', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'
' +
'b
' +
'' +
'- c
' +
'
'
);
editor.focus();
Utils.setSelection('p', 1);
execCommand('InsertDefinitionList');
equal(editor.getContent(),
'' +
'- a
' +
'- b
' +
'- c
' +
'
'
);
equal(editor.selection.getStart().nodeName, 'DT');
});
test('Indent single DT in DL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'
'
);
editor.focus();
Utils.setSelection('dt', 0);
execCommand('Indent');
equal(editor.getContent(),
'' +
'- a
' +
'
'
);
equal(editor.selection.getNode().nodeName, 'DD');
});
test('Outdent single DD in DL', function() {
editor.getBody().innerHTML = trimBrs(
'' +
'- a
' +
'
'
);
editor.focus();
Utils.setSelection('dd', 1);
execCommand('Outdent');
equal(editor.getContent(),
'' +
'- a
' +
'
'
);
equal(editor.selection.getNode().nodeName, 'DT');
});