Added support for bubbling triggered events.
[jquery.git] / test / unit / event.js
index a0857a3..eb9af7a 100644 (file)
@@ -112,6 +112,60 @@ test("bind(), namespaced events, cloned events", function() {
        ok( jQuery("a.test:first").triggerHandler("click") === false, "Handler is bound to appendTo'd elements" );
 });
 
+test("bind(), multi-namespaced events", function() {
+       expect(6);
+       
+       var order = [
+               "click.test.abc",
+               "click.test.abc",
+               "click.test",
+               "click.test.abc",
+               "click.test",
+               "custom.test2"
+       ];
+       
+       function check(name, msg){
+               same(name, order.shift(), msg);
+       }
+
+       jQuery("#firstp").bind("custom.test",function(e){
+               check("custom.test", "Custom event triggered");
+       });
+
+       jQuery("#firstp").bind("custom.test2",function(e){
+               check("custom.test2", "Custom event triggered");
+       });
+
+       jQuery("#firstp").bind("click.test",function(e){
+               check("click.test", "Normal click triggered");
+       });
+
+       jQuery("#firstp").bind("click.test.abc",function(e){
+               check("click.test.abc", "Namespaced click triggered");
+       });
+
+       // Trigger both bound fn (1)
+       jQuery("#firstp").trigger("click.test.abc");
+
+       // Trigger one bound fn (1)
+       jQuery("#firstp").trigger("click.abc");
+
+       // Trigger two bound fn (2)
+       jQuery("#firstp").trigger("click.test");
+
+       // Remove only the one fn
+       jQuery("#firstp").unbind("click.abc");
+
+       // Trigger the remaining fn (1)
+       jQuery("#firstp").trigger("click");
+
+       // Remove the remaining fn
+       jQuery("#firstp").unbind(".test");
+
+       // Trigger the remaining fn (1)
+       jQuery("#firstp").trigger("custom");
+});
+
 test("trigger() shortcuts", function() {
        expect(6);
        jQuery('<li><a href="#">Change location</a></li>').prependTo('#firstUL').find('a').bind('click', function() {
@@ -144,6 +198,40 @@ test("trigger() shortcuts", function() {
        }).load();
 });
 
+test("trigger() bubbling", function() {
+       expect(14);
+
+       var doc = 0, html = 0, body = 0, main = 0, ap = 0;
+
+       jQuery(document).bind("click", function(){ doc++; });
+       jQuery("html").bind("click", function(){ html++; });
+       jQuery("body").bind("click", function(){ body++; });
+       jQuery("#main").bind("click", function(){ main++; });
+       jQuery("#ap").bind("click", function(){ ap++; return false; });
+
+       jQuery("html").trigger("click");
+       equals( doc, 1, "HTML bubble" );
+       equals( html, 1, "HTML bubble" );
+
+       jQuery("body").trigger("click");
+       equals( doc, 2, "Body bubble" );
+       equals( html, 2, "Body bubble" );
+       equals( body, 1, "Body bubble" );
+
+       jQuery("#main").trigger("click");
+       equals( doc, 3, "Main bubble" );
+       equals( html, 3, "Main bubble" );
+       equals( body, 2, "Main bubble" );
+       equals( main, 1, "Main bubble" );
+
+       jQuery("#ap").trigger("click");
+       equals( doc, 3, "ap bubble" );
+       equals( html, 3, "ap bubble" );
+       equals( body, 2, "ap bubble" );
+       equals( main, 1, "ap bubble" );
+       equals( ap, 1, "ap bubble" );
+});
+
 test("unbind(event)", function() {
        expect(8);
        var el = jQuery("#firstp");
@@ -346,4 +434,4 @@ test("event properties", function() {
                start();
        }).click();
 });
-*/
\ No newline at end of file
+*/