module("tinymce.plugins.Paste", { setupModule: function() { QUnit.stop(); tinymce.init({ selector: "textarea", add_unload_trigger: false, skin: false, plugins: 'paste', setup: function(ed) { ed.on('NodeChange', false); }, init_instance_callback: function(ed) { window.editor = ed; QUnit.start(); } }); }, teardown: function() { delete editor.settings.paste_remove_styles_if_webkit; delete editor.settings.paste_retain_style_properties; delete editor.settings.paste_enable_default_filters; delete editor.settings.paste_data_images; } }); test("Paste simple text content", function() { var rng = editor.dom.createRng(); editor.setContent('
1234
'); editor.focus(); rng.setStart(editor.getBody().firstChild.firstChild, 1); rng.setEnd(editor.getBody().firstChild.firstChild, 3); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {content: 'TEST'}); equal(editor.getContent().replace(/[\r\n]+/g, ''), '1TEST4
'); }); test("Paste styled text content", function() { var rng = editor.dom.createRng(); editor.settings.paste_remove_styles_if_webkit = false; editor.setContent('1234
'); rng.setStart(editor.getBody().firstChild.firstChild, 1); rng.setEnd(editor.getBody().firstChild.firstChild, 3); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {content: 'TEST'}); equal(editor.getContent().replace(/[\r\n]+/g, ''), '1TEST4
'); }); test("Paste paragraph in paragraph", function() { var rng = editor.dom.createRng(); editor.setContent('1234
'); rng.setStart(editor.getBody().firstChild.firstChild, 1); rng.setEnd(editor.getBody().firstChild.firstChild, 3); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {content: 'TEST
'}); equal(editor.getContent().replace(/[\r\n]+/g, ''), '1
TEST
4
'); }); test("Paste paragraphs in complex paragraph", function() { var rng = editor.dom.createRng(); editor.setContent('1234
'); rng.setStart(editor.dom.select('em,i')[0].firstChild, 1); rng.setEnd(editor.dom.select('em,i')[0].firstChild, 3); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {content: 'TEST 1
TEST 2
'}); equal(editor.getContent().replace(/[\r\n]+/g, ''), '1
TEST 1
TEST 2
4
'); }); test("Paste Word fake list", function() { var rng = editor.dom.createRng(); editor.setContent('1234
'); rng.setStart(editor.getBody().firstChild.firstChild, 0); rng.setEnd(editor.getBody().firstChild.firstChild, 4); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {content: '· Item 1
· Item 2
· Item 3
· Item 4
· Item 5
· Item 6
'}); equal(editor.getContent().replace(/[\r\n]+/g, ''), '1234
'); rng.setStart(editor.getBody().firstChild.firstChild, 0); rng.setEnd(editor.getBody().firstChild.firstChild, 4); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {content: '\u25CF Item Spaces.
1234
'); rng.setStart(editor.getBody().firstChild.firstChild, 0); rng.setEnd(editor.getBody().firstChild.firstChild, 4); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {content: '1. Version 7.0:
1234
'); rng.setStart(editor.getBody().firstChild.firstChild, 0); rng.setEnd(editor.getBody().firstChild.firstChild, 4); editor.selection.setRng(rng); editor.execCommand('mceInsertContent', false, '· Item 1
· Item 2
· Item 3
· Item 4
· Item 5
· Item 6
'}); equal(editor.getContent().replace(/[\r\n]+/g, ''), '
a
A. X
1. Y
' }); equal(editor.getContent().replace(/[\r\n]+/g, ''), 'A. X
1234
'); rng.setStart(editor.getBody().firstChild.firstChild, 0); rng.setEnd(editor.getBody().firstChild.firstChild, 4); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {content: ' Cell 1 | Cell 2 |
Cell 3 | Cell 4 |
Cell 1 | Cell 2 |
Cell 3 | Cell 4 |
'); }); test("Paste Office 365", function() { var rng = editor.dom.createRng(); editor.setContent('
1234
'); rng.setStart(editor.getBody().firstChild.firstChild, 0); rng.setEnd(editor.getBody().firstChild.firstChild, 4); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {content: 'Test
'); }); test("Paste Google Docs", function() { var rng = editor.dom.createRng(); editor.setContent('1234
'); rng.setStart(editor.getBody().firstChild.firstChild, 0); rng.setEnd(editor.getBody().firstChild.firstChild, 4); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {content: '' + '
' + 'Comic Sans MS' + '
' + '' ) }); equal(Utils.trimContent(editor.getContent()), ( 'Comic Sans MS
' )); }); test("Paste Word links", function() { editor.setContent(''); editor.execCommand('mceInsertClipboardContent', false, { content: ( '' + '1' + '2' + '3' + '4' + '5' + '
' ) }); equal(Utils.trimContent(editor.getContent()), ( '' + '1' + '2' + '3' + '4' + '5' + '
' )); }); test("Paste Word retain styles", function() { editor.settings.paste_retain_style_properties = 'color,background-color,font-family'; // Test color editor.setContent(''); editor.execCommand('SelectAll'); editor.execCommand('mceInsertClipboardContent', false, {content: 'Test
'}); equal(Utils.trimContent(editor.getContent().replace(/[\r\n]+/g, '')), 'Test
'); // Test background-color editor.setContent(''); editor.execCommand('SelectAll'); editor.execCommand('mceInsertClipboardContent', false, {content: 'Test
'}); equal(Utils.trimContent(editor.getContent().replace(/[\r\n]+/g, '')), 'Test
'); }); test("Paste Word retain bold/italic styles to elements", function() { editor.settings.paste_retain_style_properties = 'color'; editor.setContent(''); editor.execCommand('mceInsertClipboardContent', false, { content: ( '' + 'bold' + 'italic' + 'bold + italic' + 'bold + color' + '
' ) }); equal(editor.getContent(), 'bolditalicbold + italicbold + color
'); }); test("Paste part of list from IE", function() { editor.setContent(''); editor.execCommand('SelectAll'); editor.execCommand('mceInsertClipboardContent', false, {content: 'Test
'}); equal(Utils.trimContent(editor.getContent().replace(/[\r\n]+/g, '')), 'Test
'); }); test('paste invalid content with spans on page', function() { var startingContent = '123 testing span later in document
', insertedContent = 'text
'); var rng = editor.dom.createRng(); rng.setStart(editor.dom.select('p')[0].firstChild, 1); rng.setEnd(editor.dom.select('p')[0].firstChild, 2); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {text: ' a '}); equal(editor.getContent().replace(/[\r\n]+/g, ''), 't a xt
'); }); test('paste plain text with linefeeds', function() { editor.setContent('text
'); var rng = editor.dom.createRng(); rng.setStart(editor.dom.select('p')[0].firstChild, 1); rng.setEnd(editor.dom.select('p')[0].firstChild, 2); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {text: 'a\nb\nc\n'}); equal(editor.getContent().replace(/[\r\n]+/g, ''), 'ta
b
c
xt
text
'); var rng = editor.dom.createRng(); rng.setStart(editor.dom.select('p')[0].firstChild, 1); rng.setEnd(editor.dom.select('p')[0].firstChild, 2); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {text: 'a\n\nb\n\nc'}); equal(editor.getContent().replace(/[\r\n]+/g, ''), 't
a
b
c
xt
'); }); test('paste plain text with entities', function() { editor.setContent('text
'); var rng = editor.dom.createRng(); rng.setStart(editor.dom.select('p')[0].firstChild, 1); rng.setEnd(editor.dom.select('p')[0].firstChild, 2); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {text: '< & >'}); equal(editor.getContent().replace(/[\r\n]+/g, ''), 't< & >xt
'); }); test('paste plain text with paragraphs', function() { editor.setContent('text
'); var rng = editor.dom.createRng(); rng.setStart(editor.dom.select('p')[0].firstChild, 1); rng.setEnd(editor.dom.select('p')[0].firstChild, 2); editor.selection.setRng(rng); editor.execCommand('mceInsertClipboardContent', false, {text: 'a\nb\n\nc'}); equal(editor.getContent().replace(/[\r\n]+/g, ''), 't
a
<b>b</b>
c
xt
'); }); test('paste data image with paste_data_images: false', function() { editor.setContent(''); editor.execCommand('mceInsertClipboardContent', false, {content: ''}); equal(editor.getContent(), ''); editor.execCommand('mceInsertClipboardContent', false, {content: ''}); equal(editor.getContent(), ''); }); test('paste data image with paste_data_images: true', function() { editor.settings.paste_data_images = true; editor.setContent(''); editor.execCommand('mceInsertClipboardContent', false, {content: ''}); equal(editor.getContent(), ''); }); test('paste pre process text (event)', function() { function callback(e) { e.content = 'PRE:' + e.content; } editor.setContent('a
'); Utils.setSelection('p', 0, 'p', 1); editor.on('PastePreProcess', callback); editor.execCommand('mceInsertClipboardContent', false, {text: 'b\n2'}); equal(editor.getContent(), 'PRE:b
2
a
'); Utils.setSelection('p', 0, 'p', 1); editor.off('PastePreProcess', callback); editor.execCommand('mceInsertClipboardContent', false, {text: 'c'}); equal(editor.getContent(), 'c
'); }); test('paste pre process html (event)', function() { function callback(e) { e.content = 'PRE:' + e.content; } editor.setContent('a
'); Utils.setSelection('p', 0, 'p', 1); editor.on('PastePreProcess', callback); editor.execCommand('mceInsertClipboardContent', false, {content: 'b'}); equal(editor.getContent(), 'PRE:b
'); editor.setContent('a
'); Utils.setSelection('p', 0, 'p', 1); editor.off('PastePreProcess', callback); editor.execCommand('mceInsertClipboardContent', false, {content: 'c'}); equal(editor.getContent(), 'c
'); }); test('paste post process (event)', function() { function callback(e) { e.node.innerHTML += ':POST'; } editor.setContent('a
'); Utils.setSelection('p', 0, 'p', 1); editor.on('PastePostProcess', callback); editor.execCommand('mceInsertClipboardContent', false, {content: 'b'}); equal(editor.getContent(), 'b:POST
'); editor.setContent('a
'); Utils.setSelection('p', 0, 'p', 1); editor.off('PastePostProcess', callback); editor.execCommand('mceInsertClipboardContent', false, {content: 'c'}); equal(editor.getContent(), 'c
'); }); test('paste innerText of single P', function() { editor.setContent('a
'); equal(tinymce.pasteplugin.Utils.innerText(editor.getBody().innerHTML), 'a'); }); test('paste innerText of single P with whitespace wrapped content', function() { editor.setContent('a
'); equal(tinymce.pasteplugin.Utils.innerText(editor.getBody().innerHTML), 'a'); }); test('paste innerText of two P', function() { editor.setContent('a
b
'); equal(tinymce.pasteplugin.Utils.innerText(editor.getBody().innerHTML), 'a\n\nb'); }); test('paste innerText of H1 and P', function() { editor.setContent('b
'); equal(tinymce.pasteplugin.Utils.innerText(editor.getBody().innerHTML), 'a\nb'); }); test('paste innerText of P with BR', function() { editor.setContent('a
b
ad
'); equal(tinymce.pasteplugin.Utils.innerText(editor.getBody().innerHTML), 'a d'); }); test('paste innerText of PRE', function() { editor.getBody().innerHTML = 'a\nb\n'; equal(tinymce.pasteplugin.Utils.innerText(editor.getBody().innerHTML).replace(/\r\n/g, '\n'), 'a\nb\n'); }); test('paste innerText of textnode with whitespace', function() { editor.getBody().innerHTML = '
a'; equal(tinymce.pasteplugin.Utils.innerText(editor.getBody().firstChild.innerHTML), ' a '); }); if (tinymce.Env.webkit) { test('paste webkit remove runtime styles (color)', function() { editor.setContent(''); editor.execCommand('mceInsertClipboardContent', false, {content: 'Test'}); equal(editor.getContent(), '
Test
'); }); test('paste webkit remove runtime styles (background-color)', function() { editor.setContent(''); editor.execCommand('mceInsertClipboardContent', false, {content: 'Test'}); equal(editor.getContent(), 'Test
'); }); test('paste webkit remove runtime styles (font-size)', function() { editor.setContent(''); editor.execCommand('mceInsertClipboardContent', false, {content: 'Test'}); equal(editor.getContent(), 'Test
'); }); /* test('paste webkit remove runtime styles (font-family)', function() { editor.setContent(''); editor.execCommand('mceInsertClipboardContent', false, {content: 'Test'}); equal(editor.getContent(), 'Test
'); }); */ test('paste webkit remove runtime styles (custom styles)', function() { editor.settings.paste_webkit_styles = 'color font-style'; editor.setContent(''); editor.execCommand('mceInsertClipboardContent', false, {content: 'Test'}); equal(editor.getContent(), 'Test
'); }); test('paste webkit remove runtime styles (all)', function() { editor.settings.paste_webkit_styles = 'all'; editor.setContent(''); editor.execCommand('mceInsertClipboardContent', false, {content: 'Test'}); equal(editor.getContent(), 'Test
'); }); test('paste webkit remove runtime styles (none)', function() { editor.settings.paste_webkit_styles = 'none'; editor.setContent(''); editor.execCommand('mceInsertClipboardContent', false, {content: 'Test'}); equal(editor.getContent(), 'Test
'); }); test('paste webkit remove runtime styles (color) in the same (color) (named)', function() { editor.setContent('Test'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('mceInsertClipboardContent', false, { content: ( 'a' + 'b' + 'c' ) }); equal(editor.getContent(), '
abc
'); }); test('paste webkit remove runtime styles (color) in the same (color) (hex)', function() { editor.setContent('Test'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('mceInsertClipboardContent', false, { content: ( 'a' + 'b' + 'c' ) }); equal(editor.getContent(), '
abc
'); }); test('paste webkit remove runtime styles (color) in the same (color) (rgb)', function() { editor.setContent('Test'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('mceInsertClipboardContent', false, { content: ( 'a' + 'b' + 'c' ) }); equal(editor.getContent(), '
abc
'); }); }