X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fevent.js;h=829ef7bcb49b8e2f00c0a1f76c0e039bf788e17b;hb=d490bcfa7ca78a330e55b9267cc492a49c0f70bb;hp=f2e981ec000aee00b67777d237884bdb54fdd308;hpb=1518ae1aedaafa820ed689ecf26cf43e92913896;p=jquery.git diff --git a/test/unit/event.js b/test/unit/event.js index f2e981e..829ef7b 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -1841,9 +1841,23 @@ test("window resize", function() { ok( true, "Resize event fired." ); }).resize().unbind("resize"); - ok( !jQuery(window).data("events"), "Make sure all the events are gone." ); + 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.appendTo(document.body); + jQuery(document.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(document.body).unbind("focusin.focusinBubblesTest"); +}) /* test("jQuery(function($) {})", function() { stop();