Sha256: a7f67aa74d1f803fd8c245c597d7ce50532b00305a1ba20e4e866f399e292a57
Contents?: true
Size: 918 Bytes
Versions: 30
Compression:
Stored size: 918 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== module("SC.Pane - childViews"); test("SC.Pane should not attempt to recompute visibility on child views that do not have visibility support", function() { var pane = SC.Pane.create({ childViews: ['noVisibility'], noVisibility: SC.CoreView }); // tomdale insists on slowing down the tests with extra scope chain traversals var errored = NO; try { pane.append(); } catch(e) { errored = YES; } ok(!errored, "appending a pane with child views without visibility does not result in an error"); });
Version data entries
30 entries across 30 versions & 1 rubygems