diff options
Diffstat (limited to 'src/manipulation')
-rw-r--r-- | src/manipulation/getAll.js | 2 | ||||
-rw-r--r-- | src/manipulation/support.js | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/manipulation/getAll.js b/src/manipulation/getAll.js index cc913f29e..a5a0ccaf2 100644 --- a/src/manipulation/getAll.js +++ b/src/manipulation/getAll.js @@ -4,7 +4,7 @@ define( [ function getAll( context, tag ) { - // Support: IE9-11+ + // Support: IE9-11 only // Use typeof to avoid zero-argument method invocation on host objects (#15151) var ret = typeof context.getElementsByTagName !== "undefined" ? context.getElementsByTagName( tag || "*" ) : diff --git a/src/manipulation/support.js b/src/manipulation/support.js index 4f6b9de87..da474e0a3 100644 --- a/src/manipulation/support.js +++ b/src/manipulation/support.js @@ -8,7 +8,7 @@ define( [ div = fragment.appendChild( document.createElement( "div" ) ), input = document.createElement( "input" ); - // Support: Android 4.0-4.3 + // Support: Android 4.0 - 4.3 only // Check state lost if the name is set (#11217) // Support: Windows Web Apps (WWA) // `name` and `type` must use .setAttribute for WWA (#14901) @@ -22,7 +22,7 @@ define( [ // Older WebKit doesn't clone checked state correctly in fragments support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - // Support: IE<=11+ + // 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; |