Event namespaces are ignored when bubbeling up!

Event namespaces are ignored when bubbeling up!

Hi,
I've found some strange behaviour with event namespaces. Simple example:

  1. $( "body" )
  2.       .bind( "testevent", function () {
  3.             alert( "should not trigger in body" );
  4.       })
  5.       .bind( "testevent.active", function () {
  6.             alert( "should trigger in body" );
  7.       });
  8. $( "#test" )
  9.       .bind( "testevent", function () {
  10.             alert( "should not trigger in #test" );
  11.       })
  12.       .bind( "testevent.active", function () {
  13.             alert( "should trigger in #test" );
  14.       })
  15.       .trigger( "testevent.active" );
Is it a bug that both events attached to BODY are executed when the "testevent.active" event is triggered or am I missing something?

If testet this with 1.5 and 1.5.1 RC...

Torsten