diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/support.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/support.js b/src/support.js index 114c1c31b..abe7c1bfe 100644 --- a/src/support.js +++ b/src/support.js @@ -36,7 +36,6 @@ jQuery.support = (function() { boxModel: document.compatMode === "CSS1Compat", // Will be defined later - deleteExpando: true, noCloneEvent: true, reliableMarginRight: true, boxSizingReliable: true, @@ -52,13 +51,6 @@ jQuery.support = (function() { select.disabled = true; support.optDisabled = !opt.disabled; - // Support: IE<9 - try { - delete div.test; - } catch( e ) { - support.deleteExpando = false; - } - // Check if an input maintains its value after becoming a radio input = document.createElement("input"); input.value = "t"; |