diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index 77fd17e52..a793f17dc 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -834,4 +834,21 @@ test("$('') needs optional document parameter to ease cross-frame DOM wrang f.close(); $("
Testing
").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( '' ); + ok( !checkbox.checked ); + // use a fade in to check state after this event handler has finished + $("#c1").fadeIn(function() { + ok( checkbox.checked ); + start(); + }); + }).click(); + }); \ No newline at end of file