X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fevent.js;h=fa0252cc89d25b067ea2a5ca0d8a6f0412898243;hb=2d5f8666acf9968b0424b196a26fd92a1e48125e;hp=30324978bd1eb8a35caefd255cea501b3b6c5c03;hpb=7367b524ec6c7cda0a4146e50a5dc6d7764bdef7;p=jquery.git diff --git a/test/unit/event.js b/test/unit/event.js index 3032497..fa0252c 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -255,7 +255,7 @@ test("bind(), iframes", function() { }); test("bind(), trigger change on select", function() { - expect(3); + expect(5); var counter = 0; function selectOnChange(event) { equals( event.data, counter++, "Event.data is not a global event object" ); @@ -443,7 +443,7 @@ test("bind(name, false), unbind(name, false)", function() { }); test("bind()/trigger()/unbind() on plain object", function() { - expect( 2 ); + expect( 7 ); var obj = {}; @@ -457,7 +457,12 @@ test("bind()/trigger()/unbind() on plain object", function() { ok( true, "Custom event run." ); }); - ok( jQuery(obj).data("events"), "Object has events bound." ); + var events = jQuery(obj).data("__events__"); + ok( events, "Object has events bound." ); + equals( obj.events, undefined, "Events object on plain objects is not events" ); + equals( typeof events, "function", "'events' expando is a function on plain objects." ); + equals( obj.test, undefined, "Make sure that test event is not on the plain object." ); + equals( obj.handle, undefined, "Make sure that the event handler is not on the plain object." ); // Should trigger 1 jQuery(obj).trigger("test"); @@ -469,6 +474,8 @@ test("bind()/trigger()/unbind() on plain object", function() { // Make sure it doesn't complain when no events are found jQuery(obj).unbind("test"); + + equals( obj.__events__, undefined, "Make sure events object is removed" ); }); test("unbind(type)", function() { @@ -1825,6 +1832,38 @@ test("Non DOM element events", function() { jQuery(o).trigger('nonelementobj'); }); +test("window resize", function() { + expect(2); + + jQuery(window).unbind(); + + jQuery(window).bind("resize", function(){ + ok( true, "Resize event fired." ); + }).resize().unbind("resize"); + + 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();