From: jeresig Date: Thu, 4 Feb 2010 14:23:50 +0000 (-0500) Subject: Added some more tests for checking the execution order of events (from last night... X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=104757705a19df3b6b9750aaef30aa451082f825 Added some more tests for checking the execution order of events (from last night's changes - routes around Chrome's busted object looping abilities). --- diff --git a/test/unit/event.js b/test/unit/event.js index 9ce6e2f..2937b1c 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -317,6 +317,26 @@ test("bind(), with same function", function() { equals(count, 1, "Verify that removing events still work." ); }); + +test("bind(), make sure order is maintained", function() { + expect(1); + + var elem = jQuery("#firstp"), log = [], check = []; + + for ( var i = 0; i < 100; i++ ) (function(i){ + elem.bind( "click", function(){ + log.push( i ); + }); + + check.push( i ); + })(i); + + elem.trigger("click"); + + equals( log.join(","), check.join(","), "Make sure order was maintained." ); + + elem.unbind("click"); +}); test("bind(), with different this object", function() { expect(4);