]> source.dussan.org Git - jquery.git/commitdiff
Ajax, Effects: Disable Chrome 31 workarounds
authorMichał Gołębiowski <m.goleb@gmail.com>
Mon, 10 Mar 2014 13:56:42 +0000 (14:56 +0100)
committerMichał Gołębiowski <m.goleb@gmail.com>
Mon, 10 Mar 2014 13:57:40 +0000 (14:57 +0100)
test/unit/ajax.js
test/unit/effects.js

index a07749fc6ed7969adcb92026053223f5918b2d16..c099e12b1c8b5e6116498893a9c9a6c315f9d4d8 100644 (file)
@@ -1532,17 +1532,10 @@ module( "ajax", {
                }
        } );
 
-       // Support: Chrome 31.
-       // Chrome 31 doesn't fire Ajax requests in beforeunload event handler.
-       // There is no way for us to workaround it and it's been fixed in Chrome 32
-       // so let's just blacklist Chrome 31 as long as it's in TestSwarm.
-       // See https://code.google.com/p/chromium/issues/detail?id=321241
-       if ( navigator.userAgent.indexOf( " Chrome/31." ) === -1 ) {
-               testIframeWithCallback( "#14379 - jQuery.ajax() on unload", "ajax/onunload.html", function( status ) {
-                       expect( 1 );
-                       strictEqual( status, "success", "Request completed" );
-               });
-       }
+       testIframeWithCallback( "#14379 - jQuery.ajax() on unload", "ajax/onunload.html", function( status ) {
+               expect( 1 );
+               strictEqual( status, "success", "Request completed" );
+       });
 
        ajaxTest( "#14683 - jQuery.ajax() - Exceptions thrown synchronously by xhr.send should be caught", 4, [
                {
index 0762361cbe8669e9703712695cf5dd47842d862f..3016bdbf3d88b9cb790c408c2c670cae41357a96 100644 (file)
@@ -362,29 +362,16 @@ test("animate table-row width/height", function() {
 });
 
 test("animate table-cell width/height", function() {
-       // Support: Chrome 31.
-       // Chrome 31 reports incorrect offsetWidth on a table cell with fixed width.
-       // This is fixed in Chrome 32 so let's just skip the failing test in Chrome 31.
-       // See https://code.google.com/p/chromium/issues/detail?id=290399
-       var td,
-               chrome31 = navigator.userAgent.indexOf( " Chrome/31." ) !== -1;
-
-       if (chrome31) {
-               expect(2);
-       } else {
-               expect(3);
-       }
+       expect(3);
 
-       td = jQuery( "#table" )
+       var td = jQuery( "#table" )
                        .attr({ "cellspacing": 0, "cellpadding": 0, "border": 0 })
                        .html( "<tr><td style='width:42px;height:42px;padding:0;'><div style='width:20px;height:20px;'></div></td></tr>" )
                        .find( "td" );
 
        td.animate({ width: 10, height: 10 }, 100, function() {
                equal( jQuery( this ).css( "display" ), "table-cell", "display mode is correct" );
-               if (!chrome31) {
-                       equal( this.offsetWidth, 20, "width animated to shrink wrap point" );
-               }
+               equal( this.offsetWidth, 20, "width animated to shrink wrap point" );
                equal( this.offsetHeight, 20, "height animated to shrink wrap point" );
        });
        this.clock.tick( 100 );