PHP Classes

File: public/js/tinymce/src/plugins/table/src/test/js/browser/GridSelectionTest.js

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   GoLavaCMS   public/js/tinymce/src/plugins/table/src/test/js/browser/GridSelectionTest.js   Download  
File: public/js/tinymce/src/plugins/table/src/test/js/browser/GridSelectionTest.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GoLavaCMS
Publish content on Web pages with SEO support
Author: By
Last change:
Date: 6 years ago
Size: 4,144 bytes
 

Contents

Class file image Download
asynctest( 'browser.tinymce.plugins.table.GridSelectionTest', [ 'ephox.agar.api.Assertions', 'ephox.agar.api.GeneralSteps', 'ephox.agar.api.Logger', 'ephox.agar.api.Pipeline', 'ephox.agar.api.Step', 'ephox.mcagar.api.LegacyUnit', 'ephox.mcagar.api.TinyLoader', 'tinymce.core.util.Tools', 'tinymce.plugins.table.Plugin', 'tinymce.themes.modern.Theme' ], function (Assertions, GeneralSteps, Logger, Pipeline, Step, LegacyUnit, TinyLoader, Tools, Plugin, Theme) { var success = arguments[arguments.length - 2]; var failure = arguments[arguments.length - 1]; var suite = LegacyUnit.createSuite(); Plugin(); Theme(); var assertTableSelection = function (editor, tableHtml, selectCells, cellContents) { function selectRangeXY(table, startTd, endTd) { editor.fire('mousedown', { target: startTd, button: 0 }); editor.fire('mouseover', { target: endTd, button: 0 }); editor.fire('mouseup', { target: endTd, button: 0 }); } function getCells(table) { return editor.$(table).find('td').toArray(); } function getSelectedCells(table) { return editor.$(table).find('td[data-mce-selected]').toArray(); } editor.setContent(tableHtml); var table = editor.$('table')[0]; var cells = getCells(table); var startTd = Tools.grep(cells, function (elm) { return elm.innerHTML === selectCells[0]; })[0]; var endTd = Tools.grep(cells, function (elm) { return elm.innerHTML === selectCells[1]; })[0]; selectRangeXY(table, startTd, endTd); var selection = getSelectedCells(table); selection = Tools.map(selection, function (elm) { return elm.innerHTML; }); LegacyUnit.deepEqual(selection, cellContents); }; suite.test("Table grid selection", function (editor) { assertTableSelection(editor, '<table><tr><td>1</td><td>2</td></tr><tr><td>3</td><td>4</td></tr></table>', ['1', '2'], ['1', '2']); assertTableSelection(editor, '<table><tr><td>1</td><td>2</td></tr><tr><td>3</td><td>4</td></tr></table>', ['1', '3'], ['1', '3']); assertTableSelection(editor, '<table><tr><td>1</td><td>2</td></tr><tr><td>3</td><td>4</td></tr></table>', ['1', '4'], ['1', '2', '3', '4']); assertTableSelection(editor, '<table><tr><td colspan="2" rowspan="2">1</td><td>3</td></tr><tr><td>6</td></tr></table>', ['1', '6'], ['1', '3', '6']); assertTableSelection(editor, '<table>' + '<tr>' + '<td>1</td>' + '<td>2</td>' + '<td>3</td>' + '</tr>' + '<tr>' + '<td colspan="2" rowspan="2">4</td>' + '<td>5</td>' + '</tr>' + '<tr>' + '<td>6</td>' + '</tr>' + '</table>', ['2', '6'], ['2', '3', '4', '5', '6'] ); }); var sSetRawContent = function (editor, html) { return Step.sync(function () { editor.getBody().innerHTML = html; }); }; var sAssertSelectionContent = function (editor, expectedHtml) { return Step.sync(function () { Assertions.assertHtml('Should be expected content', expectedHtml, editor.selection.getContent()); }); }; TinyLoader.setup(function (editor, onSuccess, onFailure) { Pipeline.async({}, suite.toSteps(editor).concat([ Logger.t('Extracted selection contents should be without internal attributes', GeneralSteps.sequence([ sSetRawContent(editor, '<table><tr><td data-mce-selected="1">a</td><td>b</td></tr><tr><td data-mce-selected="1">c</td><td>d</td></tr></table>'), sAssertSelectionContent(editor, '<table><tbody><tr><td>a</td></tr><tr><td>c</td></tr></tbody></table>') ])) ]), onSuccess, onFailure); }, { plugins: 'table', indent: false, valid_styles: { '*': 'width,height,vertical-align,text-align,float,border-color,background-color,border,padding,border-spacing,border-collapse' }, skin_url: '/project/src/skins/lightgray/dist/lightgray' }, success, failure); } );