2014-03-24 06:59:45 +01:00
|
|
|
module("tinymce.utils.Quirks_WebKit", {
|
|
|
|
setupModule: function() {
|
|
|
|
QUnit.stop();
|
|
|
|
|
|
|
|
tinymce.init({
|
|
|
|
selector: "textarea",
|
|
|
|
elements: "elm1",
|
2014-10-23 04:07:15 +02:00
|
|
|
plugins: wpPlugins,
|
2014-03-24 06:59:45 +01:00
|
|
|
add_unload_trigger: false,
|
|
|
|
skin: false,
|
|
|
|
indent: false,
|
|
|
|
disable_nodechange: true,
|
|
|
|
init_instance_callback : function(ed) {
|
|
|
|
window.editor = ed;
|
|
|
|
QUnit.start();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (tinymce.isWebKit) {
|
|
|
|
test('Delete from beginning of P into H1', function() {
|
2015-03-10 20:19:56 +01:00
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p>b</p>';
|
2014-03-24 06:59:45 +01:00
|
|
|
Utils.setSelection('p', 0);
|
|
|
|
editor.execCommand('Delete');
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<h1>ab</h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
2015-03-10 20:19:56 +01:00
|
|
|
/*
|
2014-03-24 06:59:45 +01:00
|
|
|
test('Delete whole H1 before P', function() {
|
2015-03-10 20:19:56 +01:00
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p>b</p>';
|
2014-03-24 06:59:45 +01:00
|
|
|
|
|
|
|
var rng = editor.selection.getRng();
|
|
|
|
rng.setStartBefore(editor.getBody().firstChild);
|
|
|
|
rng.setEndAfter(editor.getBody().firstChild);
|
|
|
|
editor.selection.setRng(rng);
|
|
|
|
|
|
|
|
editor.execCommand('Delete');
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<h1>b<br></h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
2015-03-10 20:19:56 +01:00
|
|
|
test('ForwardDelete whole H1 before P', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p>b</p>';
|
|
|
|
|
|
|
|
var rng = editor.selection.getRng();
|
|
|
|
rng.setStartBefore(editor.getBody().firstChild);
|
|
|
|
rng.setEndAfter(editor.getBody().firstChild);
|
|
|
|
editor.selection.setRng(rng);
|
|
|
|
|
|
|
|
editor.execCommand('ForwardDelete');
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<h1>b<br></h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
*/
|
2015-07-01 02:51:22 +02:00
|
|
|
|
|
|
|
test('Delete between empty paragraphs', function() {
|
|
|
|
editor.getBody().innerHTML = '<p>a</p><p><br></p><p><br></p><p>b</p>';
|
|
|
|
Utils.setSelection('p:last', 0);
|
|
|
|
editor.execCommand('Delete');
|
|
|
|
equal(Utils.normalizeHtml(Utils.cleanHtml(editor.getBody().innerHTML)), '<p>a</p><p><br /></p><p>b<br /></p>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'P');
|
|
|
|
});
|
|
|
|
|
2015-03-10 20:19:56 +01:00
|
|
|
test('Delete range from middle of H1 to middle of span in P', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>ab</h1><p>b<span style="color:red">cd</span></p>';
|
|
|
|
Utils.setSelection('h1', 1, 'span', 1);
|
|
|
|
editor.execCommand('Delete');
|
|
|
|
equal(Utils.normalizeHtml(Utils.cleanHtml(editor.getBody().innerHTML)), '<h1>a<span style="color: red;">d</span></h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Delete from beginning of P with style span inside into H1 with inline block', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a<input type="text"></h1><p>b<span style="color:red">c</span></p>';
|
|
|
|
Utils.setSelection('p', 0);
|
|
|
|
editor.execCommand('Delete');
|
|
|
|
equal(editor.getContent(), '<h1>a<input type="text" />b<span style="color: red;">c</span></h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
2014-03-24 06:59:45 +01:00
|
|
|
test('Delete from beginning of P with style span inside into H1', function() {
|
2015-03-10 20:19:56 +01:00
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p>b<span style="color:red">c</span></p>';
|
2014-03-24 06:59:45 +01:00
|
|
|
Utils.setSelection('p', 0);
|
|
|
|
editor.execCommand('Delete');
|
2015-03-10 20:19:56 +01:00
|
|
|
equal(editor.getContent(), '<h1>ab<span style="color: red;">c</span></h1>');
|
2014-03-24 06:59:45 +01:00
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
2015-03-10 20:19:56 +01:00
|
|
|
test('Delete from beginning of P into H1 with contentEditable:false', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1 contentEditable="false">a</h1><p>b<span style="color:red">c</span></p>';
|
|
|
|
Utils.setSelection('p', 0);
|
|
|
|
editor.execCommand('Delete');
|
|
|
|
equal(editor.getContent(), '<h1 contenteditable="false">a</h1><p>b<span style="color: red;">c</span></p>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Delete from beginning of P with style span inside into H1 with trailing BR', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a<br></h1><p>b<span style="color:red">c</span></p>';
|
|
|
|
Utils.setSelection('p', 0);
|
|
|
|
editor.execCommand('Delete');
|
|
|
|
equal(editor.getContent(), '<h1>ab<span style="color: red;">c</span></h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Delete from empty P with style span inside into H1', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a<br></h1><p><span style="color:red"><br></span></p>';
|
|
|
|
Utils.setSelection('span', 0);
|
|
|
|
editor.execCommand('Delete');
|
|
|
|
equal(editor.getContent(), '<h1>a</h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Delete from beginning of P with span style to H1', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p><span style="color:red">b</span></p>';
|
|
|
|
Utils.setSelection('span', 0);
|
|
|
|
editor.execCommand('Delete');
|
|
|
|
equal(editor.getContent(), '<h1>a<span style="color: red;">b</span></h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Delete from beginning of P with BR line to H1', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p>b<br>c</p>';
|
|
|
|
Utils.setSelection('p', 0);
|
|
|
|
editor.execCommand('Delete');
|
|
|
|
equal(Utils.normalizeHtml(Utils.cleanHtml(editor.getBody().innerHTML)), '<h1>ab<br />c</h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('ForwardDelete from end of H1 to P with style span', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p><span style="color:red">b</span></p>';
|
2014-03-24 06:59:45 +01:00
|
|
|
Utils.setSelection('h1', 1);
|
|
|
|
editor.execCommand('ForwardDelete');
|
2015-03-10 20:19:56 +01:00
|
|
|
equal(editor.getContent(), '<h1>a<span style="color: red;">b</span></h1>');
|
2014-03-24 06:59:45 +01:00
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
2015-03-10 20:19:56 +01:00
|
|
|
test('ForwardDelete from end of H1 with trailing BR to P with style span', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a<br></h1><p><span style="color:red">b</span></p>';
|
|
|
|
Utils.setSelection('h1', 1);
|
|
|
|
editor.execCommand('ForwardDelete');
|
|
|
|
equal(editor.getContent(), '<h1>a<span style="color: red;">b</span></h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('ForwardDelete from end of H1 with two trailing BR:s to P with style span', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a<br><br></h1><p><span style="color:red">b</span></p>';
|
|
|
|
Utils.setSelection('h1', 1);
|
|
|
|
editor.execCommand('ForwardDelete');
|
|
|
|
equal(editor.getContent(), '<h1>a</h1><p><span style="color: red;">b</span></p>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('ForwardDelete from end of H1 to P with style and inline block element', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p><input type="text"><span style="color:red">b</span></p>';
|
|
|
|
Utils.setSelection('h1', 1);
|
|
|
|
editor.execCommand('ForwardDelete');
|
|
|
|
equal(editor.getContent(), '<h1>a<input type="text" /><span style="color: red;">b</span></h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('ForwardDelete from end of H1 with BR line to P', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a<br>b</h1><p>c</p>';
|
2014-03-24 06:59:45 +01:00
|
|
|
|
|
|
|
var rng = editor.selection.getRng();
|
2015-03-10 20:19:56 +01:00
|
|
|
rng.setStart(editor.$('h1')[0].lastChild, 1);
|
|
|
|
rng.setEnd(editor.$('h1')[0].lastChild, 1);
|
2014-03-24 06:59:45 +01:00
|
|
|
editor.selection.setRng(rng);
|
|
|
|
|
|
|
|
editor.execCommand('ForwardDelete');
|
2015-03-10 20:19:56 +01:00
|
|
|
equal(Utils.normalizeHtml(Utils.cleanHtml(editor.getBody().innerHTML)), '<h1>a<br />bc</h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('ForwardDelete from end of H1 into P', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p>b</p>';
|
|
|
|
Utils.setSelection('h1', 1);
|
|
|
|
editor.execCommand('ForwardDelete');
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<h1>ab</h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('ForwardDelete from end of H1 into P with contentEditable:false', function() {
|
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p contentEditable="false">b</p>';
|
|
|
|
Utils.setSelection('h1', 1);
|
|
|
|
editor.execCommand('ForwardDelete');
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<h1>a</h1><p contenteditable="false">b</p>');
|
2014-03-24 06:59:45 +01:00
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('ForwardDelete from end of H1 into P with style span inside', function() {
|
2015-03-10 20:19:56 +01:00
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p>b<span style="color: #010203">c</span></p>';
|
2014-03-24 06:59:45 +01:00
|
|
|
Utils.setSelection('h1', 1);
|
|
|
|
editor.execCommand('ForwardDelete');
|
2014-08-09 22:55:34 +02:00
|
|
|
equal(editor.getContent(), '<h1>ab<span style="color: #010203;">c</span></h1>');
|
2014-03-24 06:59:45 +01:00
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Backspace key from beginning of P into H1', function() {
|
2015-03-10 20:19:56 +01:00
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p>b</p>';
|
2014-03-24 06:59:45 +01:00
|
|
|
Utils.setSelection('p', 0);
|
|
|
|
editor.fire("keydown", {keyCode: 8});
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<h1>ab</h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Delete key from end of H1 into P', function() {
|
2015-03-10 20:19:56 +01:00
|
|
|
editor.getBody().innerHTML = '<h1>a</h1><p>b</p>';
|
2014-03-24 06:59:45 +01:00
|
|
|
Utils.setSelection('h1', 1);
|
|
|
|
editor.fire("keydown", {keyCode: 46});
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<h1>ab</h1>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'H1');
|
|
|
|
});
|
2015-03-10 20:19:56 +01:00
|
|
|
|
|
|
|
test('Backspace previous word', function() {
|
|
|
|
editor.getBody().innerHTML = '<p>abc 123</p>';
|
|
|
|
Utils.setSelection('p', 7);
|
|
|
|
editor.fire("keydown", {keyCode: 8, ctrlKey: true});
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<p>abc </p>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'P');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Backspace previous line', function() {
|
|
|
|
editor.getBody().innerHTML = '<p>abc 123</p>';
|
|
|
|
Utils.setSelection('p', 7);
|
|
|
|
editor.fire("keydown", {keyCode: 8, metaKey: true});
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<p><br></p>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'BR');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Delete next word', function() {
|
|
|
|
editor.getBody().innerHTML = '<p>abc 123</p>';
|
|
|
|
Utils.setSelection('p', 0);
|
|
|
|
editor.fire("keydown", {keyCode: 46, ctrlKey: true});
|
|
|
|
|
|
|
|
// Remove nbsp since very old WebKit has an slight issue
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML).replace(' ', ''), '<p>123</p>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'P');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Delete next line', function() {
|
|
|
|
editor.getBody().innerHTML = '<p>abc 123</p>';
|
|
|
|
Utils.setSelection('p', 0);
|
|
|
|
editor.fire("keydown", {keyCode: 46, metaKey: true});
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<p><br></p>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'BR');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Type over bold text in fully selected block and keep bold', function() {
|
|
|
|
editor.getBody().innerHTML = '<p><i><b>x</b></i></p>';
|
|
|
|
Utils.setSelection('b', 0, 'b', 1);
|
|
|
|
editor.fire("keypress", {keyCode: 65, charCode: 65});
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<p><i><b>a</b></i></p>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'B');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Type over partial bold text and keep bold', function() {
|
|
|
|
editor.getBody().innerHTML = '<p><b>xy</b></p>';
|
|
|
|
Utils.setSelection('b', 0, 'b', 1);
|
|
|
|
editor.fire("keypress", {keyCode: 65, charCode: 65});
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<p><b>ay</b></p>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'B');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Type over bold text wrapped inside other formats', function() {
|
|
|
|
editor.getBody().innerHTML = '<p><i>1<b>2</b>3</i></p>';
|
|
|
|
Utils.setSelection('b', 0, 'b', 1);
|
|
|
|
editor.fire("keypress", {keyCode: 65, charCode: 65});
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<p><i>1<b>a</b>3</i></p>');
|
|
|
|
equal(editor.selection.getStart().nodeName, 'B');
|
|
|
|
});
|
2015-11-08 03:31:31 +01:00
|
|
|
|
|
|
|
test('Delete last character in formats', function() {
|
|
|
|
editor.getBody().innerHTML = '<p><b><i>b</i></b></p>';
|
|
|
|
Utils.setSelection('i', 1);
|
|
|
|
editor.fire("keydown", {keyCode: 8});
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<p><b><i><br></i></b></p>');
|
|
|
|
equal(editor.selection.getStart(true).nodeName, 'I');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('ForwardDelete last character in formats', function() {
|
|
|
|
editor.getBody().innerHTML = '<p><b><i>b</i></b></p>';
|
|
|
|
Utils.setSelection('i', 0);
|
|
|
|
editor.fire("keydown", {keyCode: 46});
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<p><b><i><br></i></b></p>');
|
|
|
|
equal(editor.selection.getStart(true).nodeName, 'I');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Delete in empty in formats text block', function() {
|
|
|
|
var rng;
|
|
|
|
|
|
|
|
editor.getBody().innerHTML = '<p>a</p><p><b><i><br></i></b></p><p><b><i><br></i></b></p>';
|
|
|
|
rng = editor.dom.createRng();
|
|
|
|
rng.setStartBefore(editor.$('br:last')[0]);
|
|
|
|
rng.setEndBefore(editor.$('br:last')[0]);
|
|
|
|
editor.selection.setRng(rng);
|
|
|
|
editor.fire("keydown", {keyCode: 8});
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<p>a</p><p><b><i><br></i></b></p>');
|
|
|
|
equal(editor.selection.getStart(true).nodeName, 'I');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('ForwardDelete in empty formats text block', function() {
|
|
|
|
var rng;
|
|
|
|
|
|
|
|
editor.getBody().innerHTML = '<p>a</p><p><b><i><br></i></b></p><p><b><i><br></i></b></p>';
|
|
|
|
rng = editor.dom.createRng();
|
|
|
|
rng.setStartBefore(editor.$('br:first')[0]);
|
|
|
|
rng.setEndBefore(editor.$('br:first')[0]);
|
|
|
|
editor.selection.setRng(rng);
|
|
|
|
editor.fire("keydown", {keyCode: 46});
|
|
|
|
equal(Utils.cleanHtml(editor.getBody().innerHTML), '<p>a</p><p><b><i><br></i></b></p>');
|
|
|
|
equal(editor.selection.getStart(true).nodeName, 'I');
|
|
|
|
});
|
2014-03-24 06:59:45 +01:00
|
|
|
} else {
|
|
|
|
test("Skipped since the browser isn't WebKit", function() {
|
|
|
|
ok(true, "Skipped");
|
|
|
|
});
|
|
|
|
}
|