X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fevent.js;h=65b08af8dc1f86c99ebf27463788380d23063e87;hb=25c188b6d2b8a8758c2bd97ca45e0fb14b869431;hp=74810086eee6181f6f5916a9c6f44684324feb79;hpb=04dbdb7525eab7e845100fd17c48889bdb91dc92;p=jquery.git diff --git a/test/unit/event.js b/test/unit/event.js index 7481008..65b08af 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -793,15 +793,17 @@ test(".live()/.die()", function() { jQuery('span#liveSpan1 a').click(); equals( lived, 1, "Verify that only one first handler occurred." ); - equals( livee, 0, "Verify that second handler don't." ); + equals( livee, 0, "Verify that second handler doesn't." ); // and one pair in inverse - jQuery('#liveHandlerOrder span#liveSpan2').live('click', function(){ livee++; }); - jQuery('#liveHandlerOrder span#liveSpan2 a').live('click', function(){ lived++; return false; }); + jQuery('span#liveSpan2').live('click', function(){ livee++; }); + jQuery('span#liveSpan2 a').live('click', function(){ lived++; return false; }); + lived = 0; + livee = 0; jQuery('span#liveSpan2 a').click(); - equals( lived, 2, "Verify that only one first handler occurred." ); - equals( livee, 0, "Verify that second handler don't." ); + equals( lived, 1, "Verify that only one first handler occurred." ); + equals( livee, 0, "Verify that second handler doesn't." ); // Cleanup jQuery("span#liveSpan1 a, span#liveSpan1, span#liveSpan2 a, span#liveSpan2").die("click");