PHP Classes

File: public/js/tinymce/src/core/src/test/js/browser/EditorViewInlineTest.js

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

Contents

Class file image Download
asynctest( 'browser.tinymce.core.EditorViewInlineTest', [ 'ephox.agar.api.Assertions', 'ephox.agar.api.GeneralSteps', 'ephox.agar.api.Logger', 'ephox.agar.api.Pipeline', 'ephox.agar.api.Step', 'ephox.mcagar.api.TinyApis', 'ephox.mcagar.api.TinyLoader', 'ephox.sugar.api.node.Element', 'ephox.sugar.api.properties.Css', 'tinymce.core.EditorView', 'tinymce.themes.modern.Theme' ], function (Assertions, GeneralSteps, Logger, Pipeline, Step, TinyApis, TinyLoader, Element, Css, EditorView, Theme) { var success = arguments[arguments.length - 2]; var failure = arguments[arguments.length - 1]; Theme(); var sSetBodyStyles = function (editor, css) { return Step.sync(function () { Css.setAll(Element.fromDom(editor.getBody()), css); }); }; var sTestIsXYInContentArea = function (editor, deltaX, deltaY) { return Step.sync(function () { var rect = editor.getBody().getBoundingClientRect(); Assertions.assertEq( 'Should be inside the area since the scrollbars are excluded', true, EditorView.isXYInContentArea(editor, rect.right - 25 - deltaX, rect.bottom - 25 - deltaY) ); Assertions.assertEq( 'Should be outside the area since the cordinate is on the scrollbars', false, EditorView.isXYInContentArea(editor, rect.right - 5 - deltaX, rect.bottom - 5 - deltaY) ); }); }; TinyLoader.setup(function (editor, onSuccess, onFailure) { var tinyApis = TinyApis(editor); Pipeline.async({}, [ Logger.t('isXYInContentArea without borders, margin', GeneralSteps.sequence([ sSetBodyStyles(editor, { border: '0', margin: '0', width: '100px', height: '100px', overflow: 'scroll' }), tinyApis.sSetContent('<div style="width: 5000px; height: 5000px">X</div>'), sTestIsXYInContentArea(editor, 0, 0) ])), Logger.t('isXYInContentArea with margin', GeneralSteps.sequence([ sSetBodyStyles(editor, { margin: '15px' }), tinyApis.sSetContent('<div style="width: 5000px; height: 5000px">X</div>'), sTestIsXYInContentArea(editor, -15, -15) ])), Logger.t('isXYInContentArea with borders, margin', GeneralSteps.sequence([ sSetBodyStyles(editor, { border: '5px', margin: '15px' }), tinyApis.sSetContent('<div style="width: 5000px; height: 5000px">X</div>'), sTestIsXYInContentArea(editor, -20, -20) ])) ], onSuccess, onFailure); }, { inline: true, skin_url: '/project/src/skins/lightgray/dist/lightgray' }, success, failure); } );