We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c309b95 commit 1bbb678Copy full SHA for 1bbb678
src/manipulation/support.js
@@ -7,10 +7,13 @@ define([
7
div = fragment.appendChild( document.createElement( "div" ) ),
8
input = document.createElement( "input" );
9
10
+ // Support: Android 4.0-4.3
11
+ // Check state lost if the name is set (#11217)
12
// Support: Windows Web Apps (WWA)
13
// `name` and `type` must use .setAttribute for WWA (#14901)
14
input.setAttribute( "type", "radio" );
15
input.setAttribute( "checked", "checked" );
16
+ input.setAttribute( "name", "t" );
17
18
div.appendChild( input );
19
0 commit comments