Skip to content
Permalink
Browse files
Added a not-yet-failing testcase for #1054
  • Loading branch information
jzaefferer committed Mar 25, 2007
1 parent 88abf09 commit a10afee
Showing 1 changed file with 4 additions and 3 deletions.
@@ -69,15 +69,16 @@ test("bind() with data and trigger() with data", function() {
});

test("toggle(Function,Function) assigned from within one('xxx'), see #1054", function() {
expect(3);
expect(4);
var first = 0;
$("#simon1").one("change", function() {
$("#simon1").one("click", function() {
ok( true, "Execute event only once" );
$(this).toggle(function() {
ok( first++ == 0 );
}, function() {
ok( first == 1 );
});
}).trigger("change").trigger("change").click().click();
return false;
}).click().click().click();
ok( false, "Seems like this doesn't work (that is, it doesn't fail) when triggering the event programmatically" );
});

0 comments on commit a10afee

Please sign in to comment.