PHP Classes

File: public/js/tinymce/src/plugins/textpattern/src/test/js/browser/UndoTextpatternTest.js

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   GoLavaCMS   public/js/tinymce/src/plugins/textpattern/src/test/js/browser/UndoTextpatternTest.js   Download  
File: public/js/tinymce/src/plugins/textpattern/src/test/js/browser/UndoTextpatternTest.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: 1,440 bytes
 

Contents

Class file image Download
asynctest( 'browser.tinymce.plugins.textpattern.UndoTextpatternTest', [ 'ephox.agar.api.GeneralSteps', 'ephox.agar.api.Logger', 'ephox.agar.api.Pipeline', 'ephox.mcagar.api.TinyActions', 'ephox.mcagar.api.TinyApis', 'ephox.mcagar.api.TinyLoader', 'tinymce.plugins.textpattern.Plugin', 'tinymce.plugins.textpattern.test.Utils', 'tinymce.themes.modern.Theme' ], function (GeneralSteps, Logger, Pipeline, TinyActions, TinyApis, TinyLoader, TextpatternPlugin, Utils, ModernTheme) { var success = arguments[arguments.length - 2]; var failure = arguments[arguments.length - 1]; ModernTheme(); TextpatternPlugin(); TinyLoader.setup(function (editor, onSuccess, onFailure) { var tinyApis = TinyApis(editor); var tinyActions = TinyActions(editor); var steps = Utils.withTeardown([ Logger.t('inline italic then undo', GeneralSteps.sequence([ Utils.sSetContentAndPressSpace(tinyApis, tinyActions, '*a*'), tinyApis.sAssertContentStructure(Utils.inlineStructHelper('em', 'a')), tinyApis.sExecCommand('Undo'), tinyApis.sAssertContent('<p>*a*&nbsp;</p>') ])) ], tinyApis.sSetContent('')); Pipeline.async({}, steps, onSuccess, onFailure); }, { plugins: 'textpattern', toolbar: 'textpattern', skin_url: '/project/src/skins/lightgray/dist/lightgray' }, success, failure); } );