X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fevent.js;h=65b08af8dc1f86c99ebf27463788380d23063e87;hb=25c188b6d2b8a8758c2bd97ca45e0fb14b869431;hp=2b4d8e59c693bc091f9c3ce1286644eeca8f3938;hpb=5cb1163469fb2c9cd80712cd5481b29055821022;p=jquery.git diff --git a/test/unit/event.js b/test/unit/event.js index 2b4d8e5..65b08af 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -192,6 +192,10 @@ test("bind(), multi-namespaced events", function() { jQuery("#firstp").bind("click.test.abc",function(e){ check("click.test.abc", "Namespaced click triggered"); }); + + // Those would not trigger/unbind (#5303) + jQuery("#firstp").trigger("click.a.test"); + jQuery("#firstp").unbind("click.a.test"); // Trigger both bound fn (1) jQuery("#firstp").trigger("click.test.abc"); @@ -789,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");