trigger DOM0 event handlers when doing a trigger (#1363)

This commit is contained in:
Brandon Aaron 2007-07-21 01:04:59 +00:00
parent e20e8e6e3c
commit 24463a04ce
2 changed files with 15 additions and 4 deletions

View file

@ -48,7 +48,7 @@ test("bind()", function() {
});
test("click()", function() {
expect(3);
expect(4);
$('<li><a href="#">Change location</a></li>').prependTo('#firstUL').find('a').bind('click', function() {
var close = $('spanx', this); // same with $(this).find('span');
ok( close.length == 0, "Context element does not exist, length must be zero" );
@ -59,6 +59,13 @@ test("click()", function() {
$("#check1").click(function() {
ok( true, "click event handler for checkbox gets fired twice, see #815" );
}).click();
var counter = 0;
$('#firstp')[0].onclick = function(event) {
counter++;
};
$('#firstp').click();
ok( counter == 1, "Check that click, triggers onclick event handler also" );
});
test("unbind(event)", function() {