aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2018-04-30 18:52:39 +0200
committerGitHub <noreply@github.com>2018-04-30 18:52:39 +0200
commitf5e36bd8f2c2b28231bbed926c6c3dead94db545 (patch)
treea34ac08fd6129c2974b0d16248e83b26eaa07bc6 /test/unit
parent76468365779c2d07c7f25ded141e99bad97f78a7 (diff)
downloadjquery-f5e36bd8f2c2b28231bbed926c6c3dead94db545.tar.gz
jquery-f5e36bd8f2c2b28231bbed926c6c3dead94db545.zip
CSS: Skip the px-appending logic for animations of non-element props
Without this change animating properties from jQuery.cssNumber on non-elements throws an error. Ref gh-4055 Closes gh-4061
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/effects.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/unit/effects.js b/test/unit/effects.js
index 462524ef3..e297273e4 100644
--- a/test/unit/effects.js
+++ b/test/unit/effects.js
@@ -607,6 +607,17 @@ QUnit.test( "animate non-element", function( assert ) {
this.clock.tick( 200 );
} );
+QUnit.test( "animate non-element's zIndex without appending \"px\"", function( assert ) {
+ assert.expect( 1 );
+
+ var obj = { zIndex: 0 };
+
+ jQuery( obj ).animate( { zIndex: 200 }, 200, function() {
+ assert.equal( obj.zIndex, 200, "The custom property should be modified without appending \"px\"." );
+ } );
+ this.clock.tick( 200 );
+} );
+
QUnit.test( "stop()", function( assert ) {
assert.expect( 4 );