import { GeneralSteps, Keys, Logger, Pipeline } from '@ephox/agar'; import { UnitTest } from '@ephox/bedrock'; import { TinyActions, TinyApis, TinyLoader } from '@ephox/mcagar'; import TablePlugin from 'tinymce/plugins/table/Plugin'; import ModernTheme from 'tinymce/themes/modern/Theme'; import TableTestUtils from '../../module/test/TableTestUtils'; UnitTest.asynctest( 'browser.tinymce.plugins.table.TableTablNavigationDisabledTest', function () { const success = arguments[arguments.length - 2]; const failure = arguments[arguments.length - 1]; ModernTheme(); TablePlugin(); const tableHtml = '
a
a
'; TinyLoader.setup(function (editor, onSuccess, onFailure) { const tinyApis = TinyApis(editor); const tinyActions = TinyActions(editor); Pipeline.async({}, [ Logger.t('test table grid disabled', GeneralSteps.sequence([ tinyApis.sFocus, tinyApis.sSetContent(tableHtml), TableTestUtils.sOpenToolbarOn(editor, 'td', [0]), tinyActions.sContentKeystroke(Keys.tab(), {}), tinyApis.sAssertSelection([0, 0, 0, 0], 0, [0, 0, 0, 0], 1) ])) ], onSuccess, onFailure); }, { plugins: 'table', table_tab_navigation: false, skin_url: '/project/js/tinymce/skins/lightgray' }, success, failure); } );