aboutsummaryrefslogtreecommitdiffstats
path: root/src/manipulation/support.js
blob: 434dd48feca132dee37469858cef6ad7a1541cf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
define([
	"../var/support"
], function( support ){

(function () {
	var input = document.createElement( "input" ),
		fragment = document.createDocumentFragment();

	input.type = "checkbox";

	// Make sure checked status is properly cloned
	// Support: IE9, IE10
	input.checked = true;
	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" );

	fragment.appendChild( input );

	// Support: iOS 5.1, Android 4.x, Android 2.3
	// old WebKit doesn't clone checked state correctly in fragments
	support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked;
})();

return support;

});