mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Selectmenu: fixed unit tests in IE
This commit is contained in:
parent
759e47a657
commit
50c308339c
@ -58,7 +58,7 @@ $.each([
|
||||
equals( button.text(), selected.next("option").text(), "after keydown button text" );
|
||||
|
||||
link.simulate( "click" );
|
||||
menu.find("a").last().simulate( "mouseover" ).simulate( "click" );
|
||||
menu.find("a").last().simulate( "mouseover" ).trigger( "click" );
|
||||
equals( element.find("option:selected").val(), element.find("option").last().val(), "after click original select state" );
|
||||
equals( button.text(), element.find("option").last().text(), "after click button text" );
|
||||
});
|
||||
|
@ -25,7 +25,7 @@ test("change", function () {
|
||||
value = this.element.find("option").first().text();
|
||||
|
||||
button.find("a").simulate( "click" );
|
||||
menu.find("a").first().simulate( "mouseover" ).simulate( "click" );
|
||||
menu.find("a").first().simulate( "mouseover" ).trigger( "click" );
|
||||
});
|
||||
|
||||
|
||||
@ -102,7 +102,7 @@ test("select", function () {
|
||||
menu = widget.filter(".ui-selectmenu-menu");
|
||||
|
||||
button.find("a").simulate( "click" );
|
||||
menu.find("a").first().simulate( "mouseover" ).simulate("click");
|
||||
menu.find("a").first().simulate( "mouseover" ).trigger("click");
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
|
Loading…
Reference in New Issue
Block a user