git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0452428
)
Work around a weird computed number issue in WebKit. Fixes #5145.
author
John Resig
<jeresig@gmail.com>
Thu, 10 Dec 2009 04:37:14 +0000
(20:37 -0800)
committer
John Resig
<jeresig@gmail.com>
Thu, 10 Dec 2009 04:37:14 +0000
(20:37 -0800)
src/support.js
patch
|
blob
|
history
diff --git
a/src/support.js
b/src/support.js
index
8e8d20e
..
91ee77d
100644
(file)
--- a/
src/support.js
+++ b/
src/support.js
@@
-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)