jquery.event: Patch for #2708
[jquery.git] / test / unit / event.js
index ba29ab7..68c54cb 100644 (file)
@@ -113,7 +113,7 @@ test("bind(), namespaced events, cloned events", function() {
 });
 
 test("click()", function() {
-       expect(4);
+       expect(5);
        $('<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" );
@@ -131,6 +131,13 @@ test("click()", function() {
        };
        $('#firstp').click();
        ok( counter == 1, "Check that click, triggers onclick event handler also" );
+       
+       var clickCounter = 0;
+       $('#simon1')[0].onclick = function(event) {
+               clickCounter++;
+       };
+       $('#simon1').click();
+       ok( clickCounter == 1, "Check that click, triggers onclick event handler on an a tag also" );
 });
 
 test("unbind(event)", function() {
@@ -158,7 +165,7 @@ test("unbind(event)", function() {
        ok( !jQuery.data(el[0], "events"), "Removed the events expando after all handlers are unbound." );
        
        reset();
-       var clickCounter = mouseoverCounter = 0;
+       var clickCounter = (mouseoverCounter = 0);
        var handler = function(event) {
                if (event.type == "click")
                        clickCounter += 1;
@@ -297,3 +304,11 @@ test("jQuery(function($) {})", function() {
                start();
        });
 });
+
+test("event properties", function() {
+       stop();
+       $("#simon1").click(function(event) {
+               ok( event.timeStamp, "assert event.timeStamp is present" );
+               start();
+       }).click();
+});
\ No newline at end of file