Autocomplete unit tests: Fix event handling in IE

This commit is contained in:
jzaefferer 2010-04-13 12:04:05 +02:00
parent 59ef373ddc
commit 3280e3356d

View File

@ -47,7 +47,7 @@ test("all events", function() {
same( $(".ui-menu:visible").length, 1 );
ac.simulate("keydown", { keyCode: $.ui.keyCode.DOWN });
ac.simulate("keydown", { keyCode: $.ui.keyCode.ENTER });
ac.blur();
$.browser.msie ? ac.simulate("blur") : ac.blur();
}, 50);
});
@ -63,7 +63,8 @@ test("change without selection", function() {
start();
}
});
ac.focus().val("ja").blur();
ac.triggerHandler("focus");
ac.val("ja").triggerHandler("blur");
});
test("cancel search", function() {