diff options
author | timmywil <timmywillisn@gmail.com> | 2011-10-11 22:37:52 -0400 |
---|---|---|
committer | timmywil <timmywillisn@gmail.com> | 2011-10-11 22:37:52 -0400 |
commit | a18645c6f8f5d8d84c4d47c7137683ac7b4098cc (patch) | |
tree | 8cfd75b1fa37be9e1ce255da6d29bcc590ffb60e /src/support.js | |
parent | 6c4ca13d693663cdd124d4d29cb12897a6debc5e (diff) | |
download | jquery-a18645c6f8f5d8d84c4d47c7137683ac7b4098cc.tar.gz jquery-a18645c6f8f5d8d84c4d47c7137683ac7b4098cc.zip |
Leave the opacity test unanchored in case of floating point rounding browser errors; small fix in queue tests. Fixes #5145.
Diffstat (limited to 'src/support.js')
-rw-r--r-- | src/support.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/support.js b/src/support.js index e483ce09d..b407b32c1 100644 --- a/src/support.js +++ b/src/support.js @@ -64,7 +64,7 @@ jQuery.support = (function() { // Make sure that element opacity exists // (IE uses filter instead) // Use a regex to work around a WebKit issue. See #5145 - opacity: /^0.55$/.test( a.style.opacity ), + opacity: /^0.55/.test( a.style.opacity ), // Verify style float existence // (IE uses styleFloat instead of cssFloat) |