mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Work around a weird computed number issue in WebKit. Fixes #5145.
This commit is contained in:
parent
04524287d3
commit
6bec6199c2
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user