mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Disable DOM focusin test since it can't really work in the swarm.
This commit is contained in:
parent
683be093a6
commit
d2815ed750
@ -2319,7 +2319,7 @@ test("window resize", function() {
|
||||
});
|
||||
|
||||
test("focusin bubbles", function() {
|
||||
expect(5);
|
||||
expect(2);
|
||||
|
||||
var input = jQuery( "<input type='text' />" ).prependTo( "body" ),
|
||||
order = 0;
|
||||
@ -2332,13 +2332,14 @@ test("focusin bubbles", function() {
|
||||
equal( 0, order++, "focusin on the element first" );
|
||||
});
|
||||
|
||||
// Removed since DOM focus is unreliable on test swarm
|
||||
// DOM focus method
|
||||
input[0].focus();
|
||||
// input[0].focus();
|
||||
|
||||
// To make the next focus test work, we need to take focus off the input.
|
||||
// This will fire another focusin event, so set order to reflect that.
|
||||
order = 1;
|
||||
jQuery("#text1")[0].focus();
|
||||
// order = 1;
|
||||
// jQuery("#text1")[0].focus();
|
||||
|
||||
// jQuery trigger, which calls DOM focus
|
||||
order = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user