From: Oleg Gaidarenko Date: Sat, 26 Apr 2014 17:24:05 +0000 (+0400) Subject: Effects: Respect display value on inline elements X-Git-Tag: 2.1.1~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c34dbf5a8d135e0f873ab7a76d1c8f8e316f31e4;p=jquery.git Effects: Respect display value on inline elements Take "olddisplay" value into the account Fixes #14824 Closes gh-1566 Ref 73fe17299a840a8a7f3ffffcac15e32a88bd3d66 --- diff --git a/src/effects.js b/src/effects.js index 69d1effc5..5fafc528c 100644 --- a/src/effects.js +++ b/src/effects.js @@ -116,7 +116,7 @@ function createTween( value, prop, animation ) { function defaultPrefilter( elem, props, opts ) { /* jshint validthis: true */ - var prop, value, toggle, tween, hooks, oldfire, display, + var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay, anim = this, orig = {}, style = elem.style, @@ -160,10 +160,12 @@ function defaultPrefilter( elem, props, opts ) { // Set display property to inline-block for height/width // animations on inline elements that are having width/height animated display = jQuery.css( elem, "display" ); + // Test default display if display is currently "none" - if ( (display === "none" ? defaultDisplay( elem.nodeName ) : display) === "inline" && - jQuery.css( elem, "float" ) === "none" ) { + checkDisplay = display === "none" ? + data_priv.get( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display; + if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) { style.display = "inline-block"; } } diff --git a/test/data/testsuite.css b/test/data/testsuite.css index d4122643c..cf2ba8c20 100644 --- a/test/data/testsuite.css +++ b/test/data/testsuite.css @@ -138,4 +138,7 @@ section { background:#f0f; display:block; } /* #11971 */ #foo { background: url(1x1.jpg) right bottom no-repeat; } +/* #14824 */ +#span-14824 { display: block; } + #display { display: list-item !important; } diff --git a/test/unit/effects.js b/test/unit/effects.js index 15e67ec1a..ceef87afe 100644 --- a/test/unit/effects.js +++ b/test/unit/effects.js @@ -2158,4 +2158,28 @@ test( "slideDown() after stop() (#13483)", 2, function() { clock.tick( 10 ); }); +test( "Respect display value on inline elements (#14824)", 2, function() { + var clock = this.clock, + fromStyleSheet = jQuery( "" ), + fromStyleAttr = jQuery( "" ); + + jQuery( "#qunit-fixture" ).append( fromStyleSheet, fromStyleAttr ); + + fromStyleSheet.slideUp(function() { + jQuery( this ).slideDown( function() { + equal( jQuery( this ).css( "display" ), "block", + "Respect previous display value (from stylesheet) on span element" ); + }); + }); + + fromStyleAttr.slideUp( function() { + jQuery( this ).slideDown( function() { + equal( jQuery( this ).css( "display" ), "block", + "Respect previous display value (from style attribute) on span element" ); + }); + }); + + clock.tick( 800 ); +}); + })();