mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Merge remote branch 'kborchers/unitTest_bug_7024'
This commit is contained in:
commit
5806d6554b
@ -203,4 +203,20 @@ test("cancel select", function() {
|
||||
}, 50);
|
||||
});
|
||||
|
||||
test("blur without selection", function() {
|
||||
expect(1);
|
||||
var ac = $("#autocomplete").autocomplete({
|
||||
delay: 0,
|
||||
source: data
|
||||
});
|
||||
stop();
|
||||
ac.val("j").keydown();
|
||||
setTimeout(function() {
|
||||
$( ".ui-menu-item" ).first().simulate("mouseover");
|
||||
ac.simulate("keydown", { keyCode: $.ui.keyCode.TAB });
|
||||
same( ac.val(), "j" );
|
||||
start();
|
||||
}, 50);
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
|
Loading…
Reference in New Issue
Block a user