Sha256: 686ba31ad2dd19668398d69890ded9c3db7c21a0b58ddfe59abb7898c30ed196
Contents?: true
Size: 445 Bytes
Versions: 7
Compression:
Stored size: 445 Bytes
Contents
describe('Fx.Slide', function(){ it('should reset the height when the resetHeight option is set to true by element.set', function(){ var div = new Element('div', {text: 'moo'}).inject(document.body); div.set('slide', { resetHeight: true, duration: 20 }); var fx = div.get('slide'); fx.hide().slideIn(); waits(100); runs(function(){ expect(fx.wrapper.style.height).toEqual(''); fx.wrapper.destroy(); }); }); });
Version data entries
7 entries across 7 versions & 1 rubygems