X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fevent%2FeventTest.js;h=dfc8a99e97acfc9b6e67323b5ee5dd138443a169;hb=88abf0902a1f67d0d619baacf1e6904806e488b7;hp=9615e0b637792376f11f840a937da6db908937b6;hpb=2c99c18652b9a098252d5443506c03fd45b2e2dc;p=jquery.git diff --git a/src/event/eventTest.js b/src/event/eventTest.js index 9615e0b..dfc8a99 100644 --- a/src/event/eventTest.js +++ b/src/event/eventTest.js @@ -15,7 +15,7 @@ test("toggle(Function, Function) - add toggle event and fake a few clicks", func }); test("unbind(event)", function() { - expect(3); + expect(6); var el = $("#firstp"); el.click(function() { ok( true, "Fake normal bind" ); @@ -25,6 +25,17 @@ test("unbind(event)", function() { ok( true, "Fake onebind" ); }); el.click().click(); + + el.click(function() { return; }); + el.unbind('click'); + ok( !el[0].onclick, "Handler is removed" ); // Bug #964 + + el.click(function() { return; }); + el.unbind('change',function(){ return; }); + ok( el[0].onclick, "Extra handlers weren't accidentally removed." ); + + el.unbind('click'); + ok( !el[0].$events, "Removed the events expando after all handlers are unbound." ); }); test("trigger(event, [data]", function() { @@ -55,4 +66,18 @@ test("bind() with data and trigger() with data", function() { ok( data.bar == "foo", "Check value of trigger data" ); } $("#firstp").bind("click", {foo: "bar"}, handler).trigger("click", [{bar: "foo"}]); +}); + +test("toggle(Function,Function) assigned from within one('xxx'), see #1054", function() { + expect(3); + var first = 0; + $("#simon1").one("change", function() { + ok( true, "Execute event only once" ); + $(this).toggle(function() { + ok( first++ == 0 ); + }, function() { + ok( first == 1 ); + }); + }).trigger("change").trigger("change").click().click(); + ok( false, "Seems like this doesn't work (that is, it doesn't fail) when triggering the event programmatically" ); }); \ No newline at end of file