Sha256: 516071273813d0a8a4f2be2bf2926af6f03a83dac4b4cd39ba3dd45a5246a2ac
Contents?: true
Size: 947 Bytes
Versions: 7
Compression:
Stored size: 947 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2009 Apple Inc. and contributors. // License: Licensed under MIT license (see license.js) // ========================================================================== /*global module test equals context ok same Q$ htmlbody */ var pane; module("SC.Pane#layout", { setup: function() { pane = SC.Pane.create({ layout: { top: 0, left: 0, width: 1, height: 1} }); pane.append(); }, teardown: function() { pane.remove(); } }); test("make sure that a call to adjust actually adjusts the view's size", function() { SC.run(function() { pane.adjust({ width: 100, height: 50 }); }); equals(pane.$()[0].style.width, '100px', 'width should have been adjusted'); equals(pane.$()[0].style.height, '50px', 'height should have been adjusted'); });
Version data entries
7 entries across 7 versions & 1 rubygems