diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2014-10-27 18:36:07 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2014-11-03 18:37:26 +0100 |
commit | 740e190223d19a114d5373758127285d14d6b71e (patch) | |
tree | f449fdea7a436cdabf7d6f764454887791d010a6 /src/manipulation/support.js | |
parent | 758fd6cea9e82f7bfebce07ba6ecf0d107e8a53c (diff) | |
download | jquery-740e190223d19a114d5373758127285d14d6b71e.tar.gz jquery-740e190223d19a114d5373758127285d14d6b71e.zip |
Misc: Drop support for older browsers; update support comments
That includes Opera 12.x, Firefox<29, Safari<6.0 and some hacks
for old Blackberry.
Closes gh-1820
Refs gh-1815
Diffstat (limited to 'src/manipulation/support.js')
-rw-r--r-- | src/manipulation/support.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/manipulation/support.js b/src/manipulation/support.js index 822a014f5..92c92b5ff 100644 --- a/src/manipulation/support.js +++ b/src/manipulation/support.js @@ -7,17 +7,14 @@ define([ div = fragment.appendChild( document.createElement( "div" ) ), input = document.createElement( "input" ); - // Support: Safari<=5.1 - // Check state lost if the name is set (#11217) // Support: Windows Web Apps (WWA) // `name` and `type` must use .setAttribute for WWA (#14901) input.setAttribute( "type", "radio" ); input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); div.appendChild( input ); - // Support: Safari<=5.1, Android<4.2 + // Support: Android<4.2 // Older WebKit doesn't clone checked state correctly in fragments support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; |