X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fevent.js;h=fa0252cc89d25b067ea2a5ca0d8a6f0412898243;hb=2d5f8666acf9968b0424b196a26fd92a1e48125e;hp=a51659ca4699444fa3e56e475cc075a7f841d2e3;hpb=2ef8da0924623a9bdede9eeed17ec848859844b7;p=jquery.git diff --git a/test/unit/event.js b/test/unit/event.js index a51659c..fa0252c 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -1844,6 +1844,26 @@ test("window resize", function() { ok( !jQuery(window).data("__events__"), "Make sure all the events are gone." ); }); +test("focusin bubbles", function() { + //create an input and focusin on it + var input = jQuery(""), order = 0; + + input.prependTo("body"); + + jQuery("body").bind("focusin.focusinBubblesTest",function(){ + equals(1,order++,"focusin on the body second") + }); + + input.bind("focusin.focusinBubblesTest",function(){ + equals(0,order++,"focusin on the element first") + }); + + input[0].focus(); + input.remove(); + + jQuery("body").unbind("focusin.focusinBubblesTest"); +}); + /* test("jQuery(function($) {})", function() { stop();