Skip to content

Commit 1bbb678

Browse files
committed
Manipulation: Check state lost if the name is set for Android 4.0-4.3
Refs gh-1820 Closes gh-1841
1 parent c309b95 commit 1bbb678

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/manipulation/support.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@ define([
77
div = fragment.appendChild( document.createElement( "div" ) ),
88
input = document.createElement( "input" );
99

10+
// Support: Android 4.0-4.3
11+
// Check state lost if the name is set (#11217)
1012
// Support: Windows Web Apps (WWA)
1113
// `name` and `type` must use .setAttribute for WWA (#14901)
1214
input.setAttribute( "type", "radio" );
1315
input.setAttribute( "checked", "checked" );
16+
input.setAttribute( "name", "t" );
1417

1518
div.appendChild( input );
1619

0 commit comments

Comments
 (0)