Skip to content

Commit

Permalink
Opera 9.2 was interpreting .5 as 0.50, changing it to .55 lets the re…
Browse files Browse the repository at this point in the history
…sult be the same in all browsers: 0.55. Fixes #5344.
  • Loading branch information
jeresig committed Nov 11, 2009
1 parent dee8e45 commit d933e9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/support.js
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit d933e9c

Please sign in to comment.