X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fevent%2FeventTest.js;h=7fc91b06954aa6b77d763e96ea65198a88c35073;hb=4b9bed95436bb060e57a18a08a5b486f7b812c6b;hp=595ea02e86125852b1d4c04cd5a249d9e2763a28;hpb=5cfaef9ff9b121850f1e27afae6819023acadbf7;p=jquery.git diff --git a/src/event/eventTest.js b/src/event/eventTest.js index 595ea02..7fc91b0 100644 --- a/src/event/eventTest.js +++ b/src/event/eventTest.js @@ -7,15 +7,15 @@ test("toggle(Function, Function) - add toggle event and fake a few clicks", func fn2 = function(e) { count--; }, preventDefault = function(e) { e.preventDefault() }, link = $('#mark'); - if($.browser.msie || $.browser.opera) - ok( false, "click() on link gets executed in IE/Opera, not intended behaviour!" ); + if ( $.browser.msie || $.browser.opera || /konquerer/i.test(navigator.userAgent) ) + ok( false, "click() on link gets executed in IE/Opera/Konquerer, not intended behaviour!" ); else link.click(preventDefault).click().toggle(fn1, fn2).click().click().click().click().click(); ok( count == 1, "Check for toggle(fn, fn)" ); }); 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,42 @@ 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(4); + var first = 0; + $("#simon1").one("click", function() { + ok( true, "Execute event only once" ); + $(this).toggle(function() { + ok( first++ == 0 ); + }, function() { + ok( first == 1 ); + }); + return false; + }).click().click().click(); + ok( false, "Seems like this doesn't work (that is, it doesn't fail) when triggering the event programmatically" ); +}); + +test("events don't work with iframes, see #939", function() { + expect(2); + var iframe = document.getElementById('iframe'); + var doc = iframe.contentDocument; + doc.addEventListener('click', function() { + ok( true, "Event handling via DOM 2 methods" ); + }, false); + $(doc).click(function() { + ok( true, "Event handling via jQuery's handler" ); + }).click(); +}); + +test("Event.data is a global event object", function() { + expect(3); + var counter = 0; + function selectOnChange(event) { + equals( event.data, counter++ ); + } + $("select").each(function(i){ + $(this).bind('change', i, selectOnChange); + }).trigger('change'); }); \ No newline at end of file