Fix support test for checkClone. Fixes Safari 5.1 manip failures.

This commit is contained in:
Timmy Willison 2013-09-11 09:51:31 -05:00
parent 19de30ce0f
commit 8a832797c0
2 changed files with 4 additions and 2 deletions

View File

@ -488,8 +488,9 @@ jQuery.fn.extend({
isFunction = jQuery.isFunction( value ); isFunction = jQuery.isFunction( value );
// We can't cloneNode fragments that contain checked, in WebKit // We can't cloneNode fragments that contain checked, in WebKit
if ( isFunction || !( l <= 1 || typeof value !== "string" || support.checkClone || if ( isFunction ||
!rchecked.test( value ) ) ) { ( l > 1 && typeof value === "string" &&
!support.checkClone && rchecked.test( value ) ) ) {
return this.each(function( index ) { return this.each(function( index ) {
var self = set.eq( index ); var self = set.eq( index );
if ( isFunction ) { if ( isFunction ) {

View File

@ -14,6 +14,7 @@ define([
support.noCloneChecked = input.cloneNode( true ).checked; support.noCloneChecked = input.cloneNode( true ).checked;
// #11217 - WebKit loses check when the name is after the checked attribute // #11217 - WebKit loses check when the name is after the checked attribute
input.checked = false;
input.setAttribute( "checked", "t" ); input.setAttribute( "checked", "t" );
input.setAttribute( "name", "t" ); input.setAttribute( "name", "t" );