Offset: do not run tests which break without back-incompat change

See 9d1d4c272a
This commit is contained in:
Oleg Gaidarenko 2015-12-22 17:46:47 +03:00
parent b85f32f74e
commit 9f2dcb93f8

View File

@ -405,7 +405,7 @@ testIframe( "offset/table", "table", function( $, window, document, assert ) {
} );
testIframe( "offset/scroll", "scroll", function( $, win, doc, assert ) {
assert.expect( 30 );
assert.expect( 28 );
// If we're going to bastardize the tests, let's just DO it
var ie = /msie 8/i.test( navigator.userAgent );
@ -427,8 +427,8 @@ testIframe( "offset/scroll", "scroll", function( $, win, doc, assert ) {
// These tests are solely for master/compat consistency
// Retrieving offset on disconnected/hidden elements is not officially
// valid input, but will return zeros for back-compat
assert.equal( $( "#hidden" ).offset().top, 0, "Hidden elements do not subtract scroll" );
assert.equal( $( "#hidden" ).offset().left, 0, "Hidden elements do not subtract scroll" );
// assert.equal( $( "#hidden" ).offset().top, 0, "Hidden elements do not subtract scroll" );
// assert.equal( $( "#hidden" ).offset().left, 0, "Hidden elements do not subtract scroll" );
// scroll offset tests .scrollTop/Left
assert.equal( $( "#scroll-1" ).scrollTop(), 5, "jQuery('#scroll-1').scrollTop()" );