diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-09-11 15:03:40 -0500 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-09-11 15:35:50 -0500 |
commit | d092a88e85a1a66bfc2681e0a4c9648df0dee666 (patch) | |
tree | d23d07e04046e4136aed34daa4bf596455495138 /test/unit | |
parent | 03fdc70a2e787ebd7b17c25134f16fde8f297d91 (diff) | |
download | jquery-d092a88e85a1a66bfc2681e0a4c9648df0dee666.tar.gz jquery-d092a88e85a1a66bfc2681e0a4c9648df0dee666.zip |
Set the input type for firefox. Fix a support test.
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/support.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index 617310b63..6b5b0baa5 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -1,7 +1,5 @@ module("support", { teardown: moduleTeardown }); -var computedSupport = getComputedSupport( jQuery.support ); - function getComputedSupport( support ) { var prop, result = {}; @@ -17,6 +15,8 @@ function getComputedSupport( support ) { return result; } +var computedSupport = getComputedSupport( jQuery.support ); + test( "zoom of doom (#13089)", function() { expect( 1 ); |