diff options
author | John Resig <jeresig@gmail.com> | 2009-11-11 13:45:03 -0500 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-11-11 13:45:03 -0500 |
commit | d933e9c26d9c883af6de6a48c456294748582d3c (patch) | |
tree | f95ad016364db32b266a701844ef6ab341af432a /src/support.js | |
parent | dee8e45ef35b4e97693a03c8199e7556823cf5c3 (diff) | |
download | jquery-d933e9c26d9c883af6de6a48c456294748582d3c.tar.gz jquery-d933e9c26d9c883af6de6a48c456294748582d3c.zip |
Opera 9.2 was interpreting .5 as 0.50, changing it to .55 lets the result be the same in all browsers: 0.55. Fixes #5344.
Diffstat (limited to 'src/support.js')
-rw-r--r-- | src/support.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/support.js b/src/support.js index f8d2ba345..5d04cb78e 100644 --- a/src/support.js +++ b/src/support.js @@ -8,7 +8,7 @@ id = "script" + (new Date).getTime(); div.style.display = "none"; - div.innerHTML = ' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select>'; + div.innerHTML = ' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.55;">a</a><select><option>text</option></select>'; var all = div.getElementsByTagName("*"), a = div.getElementsByTagName("a")[0]; @@ -40,7 +40,7 @@ // Make sure that element opacity exists // (IE uses filter instead) - opacity: a.style.opacity === "0.5", + opacity: a.style.opacity === "0.55", // Verify style float existence // (IE uses styleFloat instead of cssFloat) |