mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Don't add "px" to unit-less properties when animating them. Fixes #4966.
This commit is contained in:
10
test/unit/effects.js
vendored
10
test/unit/effects.js
vendored
@@ -919,3 +919,13 @@ test("hide hidden elements, with animation (bug #7141)", function() {
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
test("animate unit-less properties (#4966)", 2, function() {
|
||||
stop();
|
||||
var div = jQuery( "<div style='z-index: 0'></div>" ).appendTo( "body" );
|
||||
equal( div.css( "z-index" ), "0", "z-index is 0" );
|
||||
div.animate({ zIndex: 2 }, function() {
|
||||
equal( div.css( "z-index" ), "2", "z-index is 2" );
|
||||
start();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user