Enforce expects in events.js (https://github.com/jquery/2012-dev-summit/issues/53) Closes gh-961

This commit is contained in:
James Huston 2012-10-15 12:16:49 -04:00 committed by Rick Waldron
parent 57aa7977dd
commit 6ac8716789

View File

@ -420,6 +420,8 @@ test("bind/delegate bubbling, isDefaultPrevented", function() {
});
test("bind(), iframes", function() {
expect( 1 );
// events don't work with iframes, see #939 - this test fails in IE because of contentDocument
var doc = jQuery("#loadediframe").contents();
@ -2511,6 +2513,8 @@ test("delegate with change", function(){
});
test("delegate with submit", function() {
expect( 2 );
var count1 = 0, count2 = 0;
jQuery("#body").delegate("#testForm", "submit", function(ev) {