PHP Classes

File: public/js/tinymce/src/ui/src/test/js/browser/TextBoxTest.js

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

Contents

Class file image Download
asynctest( 'browser.tinymce.ui.TextBoxTest', [ 'ephox.agar.api.Pipeline', 'ephox.mcagar.api.LegacyUnit', 'tinymce.core.dom.DOMUtils', 'tinymce.core.dom.EventUtils', 'tinymce.ui.test.UiUtils', 'tinymce.ui.test.ViewBlock', 'tinymce.ui.Api', 'tinymce.core.ui.Factory', 'tinymce.core.util.Tools' ], function (Pipeline, LegacyUnit, DOMUtils, EventUtils, UiUtils, ViewBlock, Api, Factory, Tools) { var success = arguments[arguments.length - 2]; var failure = arguments[arguments.length - 1]; var suite = LegacyUnit.createSuite(); var viewBlock = new ViewBlock(); // Registers ui widgets to factory Api.registerToFactory(); var createTextBox = function (settings) { return Factory.create(Tools.extend({ type: 'textbox' }, settings)).renderTo(viewBlock.get()).reflow(); }; var teardown = function () { EventUtils.Event.clean(viewBlock.get()); viewBlock.update(''); }; suite.test("textbox text, size chars: 5", function () { var textBox1 = createTextBox({ text: 'X', size: 5 }); var textBox2 = createTextBox({ text: 'X', size: 6 }); LegacyUnit.equal(UiUtils.size(textBox1)[0] < UiUtils.size(textBox2)[0], true); teardown(); }); suite.test("textbox text, size 100x100", function () { var textBox = createTextBox({ text: 'X', width: 100, height: 100 }); LegacyUnit.equal(UiUtils.size(textBox), [100, 100]); teardown(); }); UiUtils.loadSkinAndOverride(viewBlock, function () { Pipeline.async({}, suite.toSteps({}), function () { teardown(); viewBlock.detach(); success(); }, failure); }); } );