Added test for #769

This commit is contained in:
Jörn Zaefferer 2007-03-25 12:32:31 +00:00
parent eab0e57fb5
commit 00a2fa5f35

View file

@ -834,4 +834,21 @@ test("$('<tag>') needs optional document parameter to ease cross-frame DOM wrang
f.close();
$("<div>Testing</div>").appendTo(f.body);
ok( true, "passed" );
});
test("Checkbox's state is erased after wrap() action (IE 6), see #769", function() {
expect(3);
stop();
$('#check1').click(function() {
var checkbox = this;
ok( !checkbox.checked );
$(checkbox).wrap( '<div id="c1" style="display:none;"></div>' );
ok( !checkbox.checked );
// use a fade in to check state after this event handler has finished
$("#c1").fadeIn(function() {
ok( checkbox.checked );
start();
});
}).click();
});