Sha256: 3b12ee50f955713ce37468c3af92948ed3563616ba99c31324d9e965d702d6e4
Contents?: true
Size: 530 Bytes
Versions: 4
Compression:
Stored size: 530 Bytes
Contents
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
4 entries across 4 versions & 2 rubygems