]> source.dussan.org Git - jquery.git/commitdiff
Disable DOM focusin test since it can't really work in the swarm.
authorDave Methvin <dave.methvin@gmail.com>
Mon, 14 Nov 2011 02:03:36 +0000 (21:03 -0500)
committerDave Methvin <dave.methvin@gmail.com>
Mon, 14 Nov 2011 02:03:36 +0000 (21:03 -0500)
test/unit/event.js

index d33ba40d6d7267a747e8008a42ba61403f81d680..8b3209733efc3e4f0b874289d22a2b0fbb777a16 100644 (file)
@@ -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;