Work around a weird computed number issue in WebKit. Fixes #5145.

This commit is contained in:
John Resig 2009-12-09 20:37:14 -08:00
parent 04524287d3
commit 6bec6199c2

View 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)