mirror of
https://github.com/jquery/jquery.git
synced 2026-01-23 16:58:14 -05:00
Resolve a763ae72 test failures
This commit is contained in:
@@ -475,10 +475,7 @@ var testAppend = function( valueObj ) {
|
||||
d.remove();
|
||||
equal( jQuery("#nonnodes").contents().length, 3, "Check node,textnode,comment append cleanup worked" );
|
||||
|
||||
$input = jQuery("<input />").attr({
|
||||
"type": "checkbox",
|
||||
"checked": true
|
||||
}).appendTo("#testForm");
|
||||
$input = jQuery("<input type='checkbox'/>").prop( "checked", true ).appendTo("#testForm");
|
||||
equal( $input[ 0 ].checked, true, "A checked checkbox that is appended stays checked" );
|
||||
|
||||
$radioChecked = jQuery("input:radio[name='R1']").eq( 1 );
|
||||
|
||||
Reference in New Issue
Block a user