Resolve a763ae72 test failures

This commit is contained in:
Richard Gibson 2012-12-15 23:42:24 -05:00
parent a763ae7277
commit 30e2ffbeb8

View File

@ -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 );