Work around a weird computed number issue in WebKit. Fixes #5145.
authorJohn Resig <jeresig@gmail.com>
Thu, 10 Dec 2009 04:37:14 +0000 (20:37 -0800)
committerJohn Resig <jeresig@gmail.com>
Thu, 10 Dec 2009 04:37:14 +0000 (20:37 -0800)
src/support.js

index 8e8d20e..91ee77d 100644 (file)
@@ -40,7 +40,8 @@
 
                // Make sure that element opacity exists
                // (IE uses filter instead)
-               opacity: a.style.opacity === "0.55",
+               // Use a regex to work around a WebKit issue. See #5145
+               opacity: /^0.55$/.test( a.style.opacity ),
 
                // Verify style float existence
                // (IE uses styleFloat instead of cssFloat)