From: Timmy Willison Date: Mon, 17 Dec 2012 23:13:06 +0000 (-0500) Subject: 2.0: Remove oldIE enctype propFix X-Git-Tag: 2.0.0b1~60^2~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=049cc9d1eba974905f868accb1f54299bb69bb7a;p=jquery.git 2.0: Remove oldIE enctype propFix --- diff --git a/src/attributes.js b/src/attributes.js index 4193bbffb..8e1934888 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -630,11 +630,6 @@ if ( !jQuery.support.optSelected ) { }); } -// IE6/7 call enctype encoding -if ( !jQuery.support.enctype ) { - jQuery.propFix.enctype = "encoding"; -} - // Radios and checkboxes getter/setter if ( !jQuery.support.checkOn ) { jQuery.each([ "radio", "checkbox" ], function() { diff --git a/src/support.js b/src/support.js index c99bb3922..d4e4ea3da 100644 --- a/src/support.js +++ b/src/support.js @@ -59,9 +59,6 @@ jQuery.support = (function() { // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) optSelected: opt.selected, - // Tests for enctype support on a form (#6743) - enctype: !!document.createElement("form").enctype, - // Makes sure cloning an html5 element does not cause problems // Where outerHTML is undefined, this still works html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>",