mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fix support test for checkClone. Fixes Safari 5.1 manip failures.
This commit is contained in:
parent
19de30ce0f
commit
8a832797c0
@ -488,8 +488,9 @@ jQuery.fn.extend({
|
||||
isFunction = jQuery.isFunction( value );
|
||||
|
||||
// We can't cloneNode fragments that contain checked, in WebKit
|
||||
if ( isFunction || !( l <= 1 || typeof value !== "string" || support.checkClone ||
|
||||
!rchecked.test( value ) ) ) {
|
||||
if ( isFunction ||
|
||||
( l > 1 && typeof value === "string" &&
|
||||
!support.checkClone && rchecked.test( value ) ) ) {
|
||||
return this.each(function( index ) {
|
||||
var self = set.eq( index );
|
||||
if ( isFunction ) {
|
||||
|
@ -14,6 +14,7 @@ define([
|
||||
support.noCloneChecked = input.cloneNode( true ).checked;
|
||||
|
||||
// #11217 - WebKit loses check when the name is after the checked attribute
|
||||
input.checked = false;
|
||||
input.setAttribute( "checked", "t" );
|
||||
input.setAttribute( "name", "t" );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user