/home/aqcert/public_html/admin/tinymce/tests/tinymce/ui
NameSizeModeActions
css/-0755rm
img/-0755rm
AbsoluteLayout.js7770644editdlrm
Button.js31040644editdlrm
Collection.js73370644editdlrm
ColorButton.js33650644editdlrm
Control.js50710644editdlrm
FitLayout.js12710644editdlrm
FlexLayout.js304510644editdlrm
GridLayout.js66410644editdlrm
MenuButton.js34140644editdlrm
Panel.js8070644editdlrm
Selector.js40380644editdlrm
SplitButton.js33210644editdlrm
TabPanel.js33360644editdlrm
TextBox.js7890644editdlrm
Window.js23260644editdlrm
Edit: /home/aqcert/public_html/admin/tinymce/tests/tinymce/ui/Panel.js (807B)
(function() { var panel; module("tinymce.ui.Panel", { setup: function() { document.getElementById('view').innerHTML = ''; }, teardown: function() { tinymce.dom.Event.clean(document.getElementById('view')); } }); function createPanel(settings) { return tinymce.ui.Factory.create(tinymce.extend({ type: 'panel' }, settings)).renderTo(document.getElementById('view')).reflow(); } test("panel width: 100, height: 100", function() { panel = createPanel({ width: 100, height: 100 }); Utils.nearlyEqualRects(Utils.rect(panel), [0, 0, 100, 100], 4); }); test("panel border: 1, width: 100, height: 100", function() { panel = createPanel({ width: 100, height: 100, border: 1 }); Utils.nearlyEqualRects(Utils.rect(panel), [0, 0, 100, 100], 4); }); })();