live() don't trigger first assigned event on multiple event binding

live() don't trigger first assigned event on multiple event binding


While palying around with the latest svn build of jquery I noticed
that .live is don't triggering the first assigned event, if you pass a
list of events to the first argument like you can do so with bind.
Every event is triggered except the first assigned even if you pass
all the supported events to .live.
Example:
$("selector").live("dblclick mousedown click", function(e) { } );
Here mousedown and click will be triggered, dblclick will be not.
You can find a complete test case here:
http://blog.metaen.de/static/sites/livebug/index.html
with regards
alx