X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fevent.js;h=16cfb6ce9530b6c99f114bfb7575ff44bf9818e4;hb=8356871a5522ad59cac80af2ca4695079059b97e;hp=cc84786482a3af22f0977a6187fd24b98326d009;hpb=ee34b6982ab25cd7699f68506d7b18a02c3c4d44;p=jquery.git diff --git a/test/unit/event.js b/test/unit/event.js index cc84786..16cfb6c 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -745,6 +745,43 @@ 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], + pass = {}; + + function worked(e){ + pass[e.type] = true; + } + + $child.live("focus", worked); + $child.live("blur", worked); + + // Test + child.focus(); + if (pass.focus) + ok(true, "Test live() with focus event"); + else + ok(true, "Cannot test focus because the window isn't focused"); + + child.blur(); + if (pass.blur) + ok( true, "Test live() with blur event"); + else + ok(true, "Cannot test blur because the window isn't focused"); + + // Teardown + $child.die("focus", worked); + $child.die("blur", worked); + $child.remove(); + window.scrollTo(0,0); +}); + test("Non DOM element events", function() { expect(3);