2.0: Remove oldIE enctype propFix

This commit is contained in:
Timmy Willison 2012-12-17 18:13:06 -05:00 committed by Rick Waldron
parent df7431b7dd
commit 049cc9d1eb
2 changed files with 0 additions and 8 deletions

View 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() {

View 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>",