PHP Classes

File: public/js/tinymce/src/core/src/test/js/browser/fmt/HooksTest.js

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   GoLavaCMS   public/js/tinymce/src/core/src/test/js/browser/fmt/HooksTest.js   Download  
File: public/js/tinymce/src/core/src/test/js/browser/fmt/HooksTest.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: 2,420 bytes
 

Contents

Class file image Download
asynctest( 'browser.tinymce.core.fmt.HooksTest', [ 'ephox.agar.api.Pipeline', 'ephox.mcagar.api.LegacyUnit', 'ephox.mcagar.api.TinyLoader', 'tinymce.core.fmt.Hooks', 'tinymce.themes.modern.Theme' ], function (Pipeline, LegacyUnit, TinyLoader, Hooks, Theme) { var success = arguments[arguments.length - 2]; var failure = arguments[arguments.length - 1]; var suite = LegacyUnit.createSuite(); Theme(); suite.test('pre - postProcessHook', function (editor) { var assertPreHook = function (setupHtml, setupSelection, expected) { editor.getBody().innerHTML = setupHtml; LegacyUnit.setSelection.apply(LegacyUnit, [editor].concat(setupSelection)); Hooks.postProcess('pre', editor); LegacyUnit.equal(editor.getContent(), expected); }; assertPreHook( '<pre>a</pre><pre>b</pre>', ['pre:nth-child(1)', 0, 'pre:nth-child(2)', 1], '<pre>a<br /><br />b</pre>' ); assertPreHook( '<pre>a</pre><pre>b</pre>', ['pre:nth-child(2)', 0, 'pre:nth-child(2)', 1], '<pre>a</pre><pre>b</pre>' ); assertPreHook( '<pre>a</pre><pre>b</pre>', ['pre:nth-child(2)', 1, 'pre:nth-child(2)', 1], '<pre>a</pre><pre>b</pre>' ); assertPreHook( '<pre>a</pre><pre>b</pre><pre>c</pre>', ['pre:nth-child(1)', 0, 'pre:nth-child(3)', 1], '<pre>a<br /><br />b<br /><br />c</pre>' ); assertPreHook( '<pre>a</pre><pre>b</pre>', ['pre:nth-child(1)', 0, 'pre:nth-child(1)', 1], '<pre>a</pre><pre>b</pre>' ); assertPreHook( '<pre>a</pre><p>b</p><pre>c</pre>', ['pre:nth-child(1)', 0, 'pre:nth-child(3)', 1], '<pre>a</pre><p>b</p><pre>c</pre>' ); assertPreHook( '<pre>a</pre><pre>b</pre><p>c</p><pre>d</pre><pre>e</pre>', ['pre:nth-child(1)', 0, 'pre:nth-child(5)', 1], '<pre>a<br /><br />b</pre><p>c</p><pre>d<br /><br />e</pre>' ); }); TinyLoader.setup(function (editor, onSuccess, onFailure) { Pipeline.async({}, suite.toSteps(editor), onSuccess, onFailure); }, { selector: "textarea", add_unload_trigger: false, disable_nodechange: true, entities: 'raw', indent: false, skin_url: '/project/src/skins/lightgray/dist/lightgray' }, success, failure); } );