Tests: compat -> 1.x in comments

(cherry-picked from df31b88135)
This commit is contained in:
Michał Gołębiowski 2016-01-11 19:23:28 +01:00
parent 090b82776f
commit d19aa97463

View File

@ -63,7 +63,7 @@ QUnit.test( "disconnected element", function( assert ) {
var result = jQuery( document.createElement( "div" ) ).offset();
// These tests are solely for master/compat consistency
// These tests are solely for 2.x/1.x consistency
// Retrieving offset on disconnected/hidden elements is not officially
// valid input, but will return zeros for back-compat
assert.equal( result.top, 0, "Retrieving offset on disconnected elements returns zeros (gh-2310)" );
@ -431,7 +431,7 @@ testIframe( "offset/scroll", "scroll", function( $, win, doc, assert ) {
}
assert.equal( $( "#scroll-1-1" ).offset().left, 11, "jQuery('#scroll-1-1').offset().left" );
// These tests are solely for master/compat consistency
// These tests are solely for 2.x/1.x 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" );