aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/effects.js
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2012-09-30 17:41:42 -0400
committerDave Methvin <dave.methvin@gmail.com>2012-09-30 22:14:49 -0400
commit9ced0274653b8b17ceb6b0675e2ae05433dcf202 (patch)
tree84acda0ae5ec1abef16e75c582a3e48815700264 /test/unit/effects.js
parent22fac5c2e40b00911933040afaf9adcdd2c00ac2 (diff)
downloadjquery-9ced0274653b8b17ceb6b0675e2ae05433dcf202.tar.gz
jquery-9ced0274653b8b17ceb6b0675e2ae05433dcf202.zip
Fix #12537, element.css('filter') returns undefined in IE9. Close gh-942.
Diffstat (limited to 'test/unit/effects.js')
-rw-r--r--test/unit/effects.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/effects.js b/test/unit/effects.js
index 70b181461..a11af646a 100644
--- a/test/unit/effects.js
+++ b/test/unit/effects.js
@@ -1689,7 +1689,7 @@ asyncTest( "non-px animation handles non-numeric start (#11971)", 2, function()
var foo = jQuery("#foo"),
initial = foo.css("backgroundPositionX");
- if ( initial == null ) {
+ if ( !initial ) {
expect(1);
ok( true, "Style property not understood" );
start();