]> source.dussan.org Git - jquery.git/commitdiff
Offset: account for scroll when calculating position
authorRichard McDaniel <rm0026@uah.edu>
Thu, 16 Oct 2014 19:32:46 +0000 (15:32 -0400)
committerTimmy Willison <timmywillisn@gmail.com>
Tue, 12 May 2015 14:34:57 +0000 (10:34 -0400)
Fixes gh-1708
Close gh-1714

src/offset.js
test/unit/offset.js

index 95658ca69e4c6f429fc4a38b827c6fb95ef2acb2..5ae7153f1c9d63614ef32c34826903d8a54c4b94 100644 (file)
@@ -131,8 +131,11 @@ jQuery.fn.extend({
                        }
 
                        // Add offsetParent borders
-                       parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true );
-                       parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true );
+                       // Subtract offsetParent scroll positions
+                       parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true ) -
+                               offsetParent.scrollTop();
+                       parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true ) -
+                               offsetParent.scrollLeft();
                }
 
                // Subtract parent offsets and element margins
index 1a467ecff989454e6e7e74384d203e646b22d712..7b2ecc905d403fee2d95553a826a1d7aaf3268e7 100644 (file)
@@ -407,7 +407,7 @@ testIframe("offset/table", "table", function( $ ) {
 });
 
 testIframe("offset/scroll", "scroll", function( $, win ) {
-       expect(24);
+       expect(28);
 
        equal( $("#scroll-1").offset().top, 7, "jQuery('#scroll-1').offset().top" );
        equal( $("#scroll-1").offset().left, 7, "jQuery('#scroll-1').offset().left" );
@@ -457,6 +457,17 @@ testIframe("offset/scroll", "scroll", function( $, win ) {
        notEqual( $().scrollLeft(null), null, "jQuery().scrollLeft(null) testing setter on empty jquery object" );
        strictEqual( $().scrollTop(), null, "jQuery().scrollTop(100) testing setter on empty jquery object" );
        strictEqual( $().scrollLeft(), null, "jQuery().scrollLeft(100) testing setter on empty jquery object" );
+
+       // Tests position after parent scrolling (#15239)
+       $("#scroll-1").scrollTop(0);
+       $("#scroll-1").scrollLeft(0);
+       equal( $("#scroll-1-1").position().top, 6, "jQuery('#scroll-1-1').position().top unaffected by parent scrolling" );
+       equal( $("#scroll-1-1").position().left, 6, "jQuery('#scroll-1-1').position().left unaffected by parent scrolling" );
+
+       $("#scroll-1").scrollTop(5);
+       $("#scroll-1").scrollLeft(5);
+       equal( $("#scroll-1-1").position().top, 6, "jQuery('#scroll-1-1').position().top unaffected by parent scrolling" );
+       equal( $("#scroll-1-1").position().left, 6, "jQuery('#scroll-1-1').position().left unaffected by parent scrolling" );
 });
 
 testIframe("offset/body", "body", function( $ ) {