diff --git a/src/css.js b/src/css.js index a29356e1bd..6b800d6d35 100644 --- a/src/css.js +++ b/src/css.js @@ -172,7 +172,7 @@ jQuery.extend({ // setting or getting the value cssProps: { // normalize float css property - "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" + "float": "cssFloat" }, // Get and set the style property on a DOM Node diff --git a/src/support.js b/src/support.js index 3c763092f9..25b2fd883d 100644 --- a/src/support.js +++ b/src/support.js @@ -21,10 +21,6 @@ jQuery.support = (function() { a.style.cssText = "float:left;opacity:.5"; support = { - // Verify style float existence - // (IE uses styleFloat instead of cssFloat) - cssFloat: !!a.style.cssFloat, - // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) checkOn: !!input.value,