]> source.dussan.org Git - jquery.git/commitdiff
2.0: Remove oldIE enctype propFix
authorTimmy Willison <timmywillisn@gmail.com>
Mon, 17 Dec 2012 23:13:06 +0000 (18:13 -0500)
committerRick Waldron <waldron.rick@gmail.com>
Mon, 31 Dec 2012 18:20:24 +0000 (13:20 -0500)
src/attributes.js
src/support.js

index 4193bbffb20572817c585cf7ecb30a66e634ae1b..8e193488878686a013b7662db615d705af825825 100644 (file)
@@ -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() {
index c99bb392222c9abdf33b6a1565997da4c9ea049b..d4e4ea3dae99339d71abcba99496875c24bac6ff 100644 (file)
@@ -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></:nav>",