PHP Classes

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

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

Contents

Class file image Download
asynctest( 'browser.tinymce.plugins.textpattern.TriggerInlinePatternBeginningTest', [ 'ephox.agar.api.GeneralSteps', 'ephox.agar.api.Logger', 'ephox.agar.api.Pipeline', 'ephox.agar.api.Step', '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, Step, 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('enter after first * in *a*', GeneralSteps.sequence([ tinyApis.sSetContent('<p>*a*</p>'), tinyApis.sFocus, tinyApis.sSetCursor([0, 0], 1), Step.sync(function () { editor.fire('keydown', { keyCode: 13 }); }), tinyApis.sAssertContent('<p>*</p><p>a*</p>') ])), Logger.t('enter after first * in *a*', GeneralSteps.sequence([ tinyApis.sSetContent('<p><strong>a</strong>*b*</p>'), tinyApis.sFocus, tinyApis.sSetCursor([0, 1], 1), Step.sync(function () { editor.fire('keydown', { keyCode: 13 }); }) ])) ], tinyApis.sSetContent('')); Pipeline.async({}, steps, onSuccess, onFailure); }, { plugins: 'textpattern', toolbar: 'textpattern', indent: false, skin_url: '/project/src/skins/lightgray/dist/lightgray' }, success, failure); } );