X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fevent.js;h=d10b3d3727aced1a803efb7fb44ff3002435b62e;hb=bca82254137a161094377b2d8189c2d9d5906a0f;hp=d324432767ea0dba58bddccb5676f6efdfab53aa;hpb=811891785f5bfa3f42ec9cb18e68fc3a114935e9;p=jquery.git diff --git a/test/unit/event.js b/test/unit/event.js index d324432..d10b3d3 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -337,7 +337,7 @@ test("trigger() bubbling", function() { }); test("trigger(type, [data], [fn])", function() { - expect(11); + expect(12); var handler = function(event, a, b, c) { equals( event.type, "click", "check passed data" ); @@ -374,6 +374,14 @@ test("trigger(type, [data], [fn])", function() { pass = false; } ok( pass, "Trigger focus on hidden element" ); + + pass = true; + try { + jQuery('table:first').bind('test:test', function(){}).trigger('test:test'); + } catch (e) { + pass = false; + } + ok( pass, "Trigger on a table with a colon in the even type, see #3533" ); }); test("trigger(eventObject, [data], [fn])", function() { @@ -737,6 +745,36 @@ test(".live()/.die()", function() { jQuery('span#liveSpan1').die('click'); }); +test("live with focus/blur", function(){ + expect(2); + + // Setup + jQuery("").appendTo("body"); + + var $child = jQuery("#livefb"), + child = $child[0], + counter = 0; + + function count(){ + counter++; + } + + // Test + $child.live("focus", count); + $child.live("blur", count); + + child.focus(); + equals(counter, 1, "Test live() with focus event"); + + child.blur(); + equals(counter, 2, "Test live() with blur event"); + + // Teardown + $child.die("focus", count); + $child.die("blur", count); + $child.remove(); +}); + test("Non DOM element events", function() { expect(3);