diff options
Diffstat (limited to 'src/manipulation/support.js')
-rw-r--r-- | src/manipulation/support.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/manipulation/support.js b/src/manipulation/support.js index da474e0a3..d01c439ee 100644 --- a/src/manipulation/support.js +++ b/src/manipulation/support.js @@ -18,11 +18,11 @@ define( [ div.appendChild( input ); - // Support: Android<4.2 + // Support: Android <=4.1 only // Older WebKit doesn't clone checked state correctly in fragments support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - // Support: IE<=11 only + // Support: IE <=11 only // Make sure textarea (and checkbox) defaultValue is properly cloned div.innerHTML = "<textarea>x</textarea>"; support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; |