mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Tests: Blacklist one effects test in 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
This commit is contained in:
parent
391c21b15d
commit
c11becbb69
16
test/unit/effects.js
vendored
16
test/unit/effects.js
vendored
@ -362,15 +362,29 @@ test("animate table-row width/height", function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test("animate table-cell 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);
|
||||||
var td = jQuery( "#table" )
|
}
|
||||||
|
|
||||||
|
td = jQuery( "#table" )
|
||||||
.attr({ "cellspacing": 0, "cellpadding": 0, "border": 0 })
|
.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>" )
|
.html( "<tr><td style='width:42px;height:42px;padding:0;'><div style='width:20px;height:20px;'></div></td></tr>" )
|
||||||
.find( "td" );
|
.find( "td" );
|
||||||
|
|
||||||
td.animate({ width: 10, height: 10 }, 100, function() {
|
td.animate({ width: 10, height: 10 }, 100, function() {
|
||||||
equal( jQuery( this ).css( "display" ), "table-cell", "display mode is correct" );
|
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" );
|
equal( this.offsetHeight, 20, "height animated to shrink wrap point" );
|
||||||
});
|
});
|
||||||
this.clock.tick( 100 );
|
this.clock.tick( 100 );
|
||||||
|
Loading…
Reference in New Issue
Block a user