@@ -14,7 +14,6 @@ var alwaysScrollable,
14
14
// Append forceScroll to the body instead of #qunit-fixture because the latter is hidden
15
15
forceScroll . appendTo ( "body" ) ;
16
16
window . scrollTo ( 200 , 200 ) ;
17
- window . supportsScroll = document . documentElement . scrollTop || document . body . scrollTop ;
18
17
forceScroll . detach ( ) ;
19
18
20
19
// Support: iOS <=7 - 12+
@@ -363,7 +362,7 @@ testIframe( "static", "offset/static.html", function( assert, $ ) {
363
362
} ) ;
364
363
} ) ;
365
364
366
- testIframe ( "fixed" , "offset/fixed.html" , function ( assert , $ , window ) {
365
+ testIframe ( "fixed" , "offset/fixed.html" , function ( assert , $ ) {
367
366
assert . expect ( 38 ) ;
368
367
369
368
var tests , $noTopLeft ;
@@ -386,22 +385,12 @@ testIframe( "fixed", "offset/fixed.html", function( assert, $, window ) {
386
385
] ;
387
386
388
387
jQuery . each ( tests , function ( ) {
389
- if ( ! window . supportsScroll ) {
390
- assert . ok ( true , "Browser doesn't support scroll position." ) ;
391
- assert . ok ( true , "Browser doesn't support scroll position." ) ;
392
- assert . ok ( true , "Browser doesn't support scroll position." ) ;
393
- assert . ok ( true , "Browser doesn't support scroll position." ) ;
394
- assert . ok ( true , "Browser doesn't support scroll position." ) ;
395
- assert . ok ( true , "Browser doesn't support scroll position." ) ;
396
-
397
- } else {
398
- assert . equal ( jQuery . isPlainObject ( $ ( this . id ) . offset ( ) ) , true , "jQuery('" + this . id + "').offset() is plain object" ) ;
399
- assert . equal ( jQuery . isPlainObject ( $ ( this . id ) . position ( ) ) , true , "jQuery('" + this . id + "').position() is plain object" ) ;
400
- assert . equal ( $ ( this . id ) . offset ( ) . top , this . offsetTop , "jQuery('" + this . id + "').offset().top" ) ;
401
- assert . equal ( $ ( this . id ) . position ( ) . top , this . positionTop , "jQuery('" + this . id + "').position().top" ) ;
402
- assert . equal ( $ ( this . id ) . offset ( ) . left , this . offsetLeft , "jQuery('" + this . id + "').offset().left" ) ;
403
- assert . equal ( $ ( this . id ) . position ( ) . left , this . positionLeft , "jQuery('" + this . id + "').position().left" ) ;
404
- }
388
+ assert . equal ( jQuery . isPlainObject ( $ ( this . id ) . offset ( ) ) , true , "jQuery('" + this . id + "').offset() is plain object" ) ;
389
+ assert . equal ( jQuery . isPlainObject ( $ ( this . id ) . position ( ) ) , true , "jQuery('" + this . id + "').position() is plain object" ) ;
390
+ assert . equal ( $ ( this . id ) . offset ( ) . top , this . offsetTop , "jQuery('" + this . id + "').offset().top" ) ;
391
+ assert . equal ( $ ( this . id ) . position ( ) . top , this . positionTop , "jQuery('" + this . id + "').position().top" ) ;
392
+ assert . equal ( $ ( this . id ) . offset ( ) . left , this . offsetLeft , "jQuery('" + this . id + "').offset().left" ) ;
393
+ assert . equal ( $ ( this . id ) . position ( ) . left , this . positionLeft , "jQuery('" + this . id + "').position().left" ) ;
405
394
} ) ;
406
395
407
396
tests = [
@@ -476,19 +465,11 @@ testIframe( "scroll", "offset/scroll.html", function( assert, $, win ) {
476
465
477
466
win . name = "test" ;
478
467
479
- if ( ! window . supportsScroll ) {
480
- assert . ok ( true , "Browser doesn't support scroll position." ) ;
481
- assert . ok ( true , "Browser doesn't support scroll position." ) ;
482
-
483
- assert . ok ( true , "Browser doesn't support scroll position." ) ;
484
- assert . ok ( true , "Browser doesn't support scroll position." ) ;
485
- } else {
486
- assert . equal ( $ ( win ) . scrollTop ( ) , 1000 , "jQuery(window).scrollTop()" ) ;
487
- assert . equal ( $ ( win ) . scrollLeft ( ) , 1000 , "jQuery(window).scrollLeft()" ) ;
468
+ assert . equal ( $ ( win ) . scrollTop ( ) , 1000 , "jQuery(window).scrollTop()" ) ;
469
+ assert . equal ( $ ( win ) . scrollLeft ( ) , 1000 , "jQuery(window).scrollLeft()" ) ;
488
470
489
- assert . equal ( $ ( win . document ) . scrollTop ( ) , 1000 , "jQuery(document).scrollTop()" ) ;
490
- assert . equal ( $ ( win . document ) . scrollLeft ( ) , 1000 , "jQuery(document).scrollLeft()" ) ;
491
- }
471
+ assert . equal ( $ ( win . document ) . scrollTop ( ) , 1000 , "jQuery(document).scrollTop()" ) ;
472
+ assert . equal ( $ ( win . document ) . scrollLeft ( ) , 1000 , "jQuery(document).scrollLeft()" ) ;
492
473
493
474
// test jQuery using parent window/document
494
475
// jQuery reference here is in the iframe
0 commit comments