aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorbrandonaaron <brandon.aaron@gmail.com>2010-02-27 19:43:23 -0600
committerbrandonaaron <brandon.aaron@gmail.com>2010-02-27 19:43:23 -0600
commit1d352084c4257217b0778f1ec3bb2e409411a4c3 (patch)
tree84d688650c18c7b3fd1f5e4f1798b41d03155fd4 /test
parent36faab439a1d3a5471847e952d0019e8e4e9b982 (diff)
downloadjquery-1d352084c4257217b0778f1ec3bb2e409411a4c3.tar.gz
jquery-1d352084c4257217b0778f1ec3bb2e409411a4c3.zip
Use correct window reference in offset to work properly cross-frame. Fixes #6190.
Diffstat (limited to 'test')
-rw-r--r--test/unit/offset.js38
1 files changed, 36 insertions, 2 deletions
diff --git a/test/unit/offset.js b/test/unit/offset.js
index dbaddc862..3d71ef177 100644
--- a/test/unit/offset.js
+++ b/test/unit/offset.js
@@ -1,5 +1,39 @@
module("offset");
+testoffset("absolute"/* in iframe */, function($, iframe) {
+ expect(4);
+
+ var doc = iframe.document, tests;
+
+ // force a scroll value on the main window
+ // this insures that the results will be wrong
+ // if the offset method is using the scroll offset
+ // of the parent window
+ var forceScroll = jQuery('<div>', { width: 2000, height: 2000 }).appendTo('body');
+ window.scrollTo(1, 1);
+
+ // get offset
+ tests = [
+ { id: '#absolute-1', top: 1, left: 1 }
+ ];
+ jQuery.each( tests, function() {
+ equals( jQuery( this.id, doc ).offset().top, this.top, "jQuery('" + this.id + "').offset().top" );
+ equals( jQuery( this.id, doc ).offset().left, this.left, "jQuery('" + this.id + "').offset().left" );
+ });
+
+
+ // get position
+ tests = [
+ { id: '#absolute-1', top: 0, left: 0 }
+ ];
+ jQuery.each( tests, function() {
+ equals( jQuery( this.id, doc ).position().top, this.top, "jQuery('" + this.id + "').position().top" );
+ equals( jQuery( this.id, doc ).position().left, this.left, "jQuery('" + this.id + "').position().left" );
+ });
+
+ forceScroll.remove();
+});
+
testoffset("absolute", function( jQuery ) {
expect(144);
@@ -306,8 +340,8 @@ testoffset("body", function( jQuery ) {
});
test("Chaining offset(coords) returns jQuery object", function() {
- expect(2);
- var coords = { top: 1, left: 1 };
+ expect(2);
+ var coords = { top: 1, left: 1 };
equals( jQuery("#absolute-1").offset(coords).selector, "#absolute-1", "offset(coords) returns jQuery object" );
equals( jQuery("#non-existent").offset(coords).selector, "#non-existent", "offset(coords) with empty jQuery set returns jQuery object" );
});