diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2015-08-16 09:59:58 +0300 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2015-09-07 20:03:50 +0300 |
commit | 10fdad742a2a6aa9f0e00b3e04fc5264797c53c7 (patch) | |
tree | 6b6d7b1375ff88f4bebbfa0703f7b595eb485df9 /test/unit/dimensions.js | |
parent | 7aa46e0df8a673e6b00550bbbbed21eed50108b7 (diff) | |
download | jquery-10fdad742a2a6aa9f0e00b3e04fc5264797c53c7.tar.gz jquery-10fdad742a2a6aa9f0e00b3e04fc5264797c53c7.zip |
Build: Update jscs and lint files
Fixes gh-2056
Diffstat (limited to 'test/unit/dimensions.js')
-rw-r--r-- | test/unit/dimensions.js | 240 |
1 files changed, 120 insertions, 120 deletions
diff --git a/test/unit/dimensions.js b/test/unit/dimensions.js index 5b471094f..c2f08a0bd 100644 --- a/test/unit/dimensions.js +++ b/test/unit/dimensions.js @@ -1,10 +1,10 @@ -(function() { +( function() { if ( !jQuery.fn.width ) { return; } -QUnit.module("dimensions", { teardown: moduleTeardown }); +QUnit.module( "dimensions", { teardown: moduleTeardown } ); function pass( val ) { return val; @@ -29,111 +29,111 @@ function fn( val ) { */ function testWidth( val, assert ) { - assert.expect(9); + assert.expect( 9 ); var $div, blah; - $div = jQuery("#nothiddendiv"); - $div.width( val(30) ); - assert.equal($div.width(), 30, "Test set to 30 correctly"); + $div = jQuery( "#nothiddendiv" ); + $div.width( val( 30 ) ); + assert.equal( $div.width(), 30, "Test set to 30 correctly" ); $div.hide(); - assert.equal($div.width(), 30, "Test hidden div"); + assert.equal( $div.width(), 30, "Test hidden div" ); $div.show(); - $div.width( val(-1) ); // handle negative numbers by setting to 0 #11604 - assert.equal($div.width(), 0, "Test negative width normalized to 0"); - $div.css("padding", "20px"); - assert.equal($div.width(), 0, "Test padding specified with pixels"); - $div.css("border", "2px solid #fff"); - assert.equal($div.width(), 0, "Test border specified with pixels"); + $div.width( val( -1 ) ); // handle negative numbers by setting to 0 #11604 + assert.equal( $div.width(), 0, "Test negative width normalized to 0" ); + $div.css( "padding", "20px" ); + assert.equal( $div.width(), 0, "Test padding specified with pixels" ); + $div.css( "border", "2px solid #fff" ); + assert.equal( $div.width(), 0, "Test border specified with pixels" ); - $div.css({ "display": "", "border": "", "padding": "" }); + $div.css( { "display": "", "border": "", "padding": "" } ); - jQuery("#nothiddendivchild").css({ "width": 20, "padding": "3px", "border": "2px solid #fff" }); - assert.equal(jQuery("#nothiddendivchild").width(), 20, "Test child width with border and padding"); - jQuery("#nothiddendiv, #nothiddendivchild").css({ "border": "", "padding": "", "width": "" }); + jQuery( "#nothiddendivchild" ).css( { "width": 20, "padding": "3px", "border": "2px solid #fff" } ); + assert.equal( jQuery( "#nothiddendivchild" ).width(), 20, "Test child width with border and padding" ); + jQuery( "#nothiddendiv, #nothiddendivchild" ).css( { "border": "", "padding": "", "width": "" } ); - blah = jQuery("blah"); - assert.equal( blah.width( val(10) ), blah, "Make sure that setting a width on an empty set returns the set." ); - assert.equal( blah.width(), null, "Make sure 'null' is returned on an empty set"); + blah = jQuery( "blah" ); + assert.equal( blah.width( val( 10 ) ), blah, "Make sure that setting a width on an empty set returns the set." ); + assert.equal( blah.width(), null, "Make sure 'null' is returned on an empty set" ); - assert.equal( jQuery(window).width(), document.documentElement.clientWidth, "Window width is equal to width reported by window/document." ); + assert.equal( jQuery( window ).width(), document.documentElement.clientWidth, "Window width is equal to width reported by window/document." ); - QUnit.expectJqData( this, $div[0], "olddisplay" ); + QUnit.expectJqData( this, $div[ 0 ], "olddisplay" ); } -QUnit.test("width()", function( assert ) { +QUnit.test( "width()", function( assert ) { testWidth( pass, assert ); -}); +} ); -QUnit.test("width(Function)", function( assert ) { +QUnit.test( "width(Function)", function( assert ) { testWidth( fn, assert ); -}); +} ); -QUnit.test("width(Function(args))", function( assert ) { +QUnit.test( "width(Function(args))", function( assert ) { assert.expect( 2 ); - var $div = jQuery("#nothiddendiv"); - $div.width( 30 ).width(function(i, width) { + var $div = jQuery( "#nothiddendiv" ); + $div.width( 30 ).width( function( i, width ) { assert.equal( width, 30, "Make sure previous value is correct." ); return width + 1; - }); + } ); assert.equal( $div.width(), 31, "Make sure value was modified correctly." ); -}); +} ); function testHeight( val, assert ) { - assert.expect(9); + assert.expect( 9 ); var $div, blah; - $div = jQuery("#nothiddendiv"); - $div.height( val(30) ); - assert.equal($div.height(), 30, "Test set to 30 correctly"); + $div = jQuery( "#nothiddendiv" ); + $div.height( val( 30 ) ); + assert.equal( $div.height(), 30, "Test set to 30 correctly" ); $div.hide(); - assert.equal($div.height(), 30, "Test hidden div"); + assert.equal( $div.height(), 30, "Test hidden div" ); $div.show(); - $div.height( val(-1) ); // handle negative numbers by setting to 0 #11604 - assert.equal($div.height(), 0, "Test negative height normalized to 0"); - $div.css("padding", "20px"); - assert.equal($div.height(), 0, "Test padding specified with pixels"); - $div.css("border", "2px solid #fff"); - assert.equal($div.height(), 0, "Test border specified with pixels"); + $div.height( val( -1 ) ); // handle negative numbers by setting to 0 #11604 + assert.equal( $div.height(), 0, "Test negative height normalized to 0" ); + $div.css( "padding", "20px" ); + assert.equal( $div.height(), 0, "Test padding specified with pixels" ); + $div.css( "border", "2px solid #fff" ); + assert.equal( $div.height(), 0, "Test border specified with pixels" ); - $div.css({ "display": "", "border": "", "padding": "", "height": "1px" }); + $div.css( { "display": "", "border": "", "padding": "", "height": "1px" } ); - jQuery("#nothiddendivchild").css({ "height": 20, "padding": "3px", "border": "2px solid #fff" }); - assert.equal(jQuery("#nothiddendivchild").height(), 20, "Test child height with border and padding"); - jQuery("#nothiddendiv, #nothiddendivchild").css({ "border": "", "padding": "", "height": "" }); + jQuery( "#nothiddendivchild" ).css( { "height": 20, "padding": "3px", "border": "2px solid #fff" } ); + assert.equal( jQuery( "#nothiddendivchild" ).height(), 20, "Test child height with border and padding" ); + jQuery( "#nothiddendiv, #nothiddendivchild" ).css( { "border": "", "padding": "", "height": "" } ); - blah = jQuery("blah"); - assert.equal( blah.height( val(10) ), blah, "Make sure that setting a height on an empty set returns the set." ); - assert.equal( blah.height(), null, "Make sure 'null' is returned on an empty set"); + blah = jQuery( "blah" ); + assert.equal( blah.height( val( 10 ) ), blah, "Make sure that setting a height on an empty set returns the set." ); + assert.equal( blah.height(), null, "Make sure 'null' is returned on an empty set" ); - assert.equal( jQuery(window).height(), document.documentElement.clientHeight, "Window width is equal to width reported by window/document." ); + assert.equal( jQuery( window ).height(), document.documentElement.clientHeight, "Window width is equal to width reported by window/document." ); - QUnit.expectJqData( this, $div[0], "olddisplay" ); + QUnit.expectJqData( this, $div[ 0 ], "olddisplay" ); } -QUnit.test("height()", function( assert ) { +QUnit.test( "height()", function( assert ) { testHeight( pass, assert ); -}); +} ); -QUnit.test("height(Function)", function( assert ) { +QUnit.test( "height(Function)", function( assert ) { testHeight( fn, assert ); -}); +} ); -QUnit.test("height(Function(args))", function( assert ) { +QUnit.test( "height(Function(args))", function( assert ) { assert.expect( 2 ); - var $div = jQuery("#nothiddendiv"); - $div.height( 30 ).height(function(i, height) { + var $div = jQuery( "#nothiddendiv" ); + $div.height( 30 ).height( function( i, height ) { assert.equal( height, 30, "Make sure previous value is correct." ); return height + 1; - }); + } ); assert.equal( $div.height(), 31, "Make sure value was modified correctly." ); -}); +} ); -QUnit.test("innerWidth()", function( assert ) { +QUnit.test( "innerWidth()", function( assert ) { assert.expect( 6 ); var $div, div, @@ -144,11 +144,11 @@ QUnit.test("innerWidth()", function( assert ) { assert.equal( jQuery( document ).innerWidth(), $doc.width(), "Test on document" ); $div = jQuery( "#nothiddendiv" ); - $div.css({ + $div.css( { "margin": 10, "border": "2px solid #fff", "width": 30 - }); + } ); assert.equal( $div.innerWidth(), 30, "Test with margin and border" ); $div.css( "padding", "20px" ); @@ -157,7 +157,7 @@ QUnit.test("innerWidth()", function( assert ) { assert.equal( $div.innerWidth(), 70, "Test hidden div" ); // reset styles - $div.css({ "display": "", "border": "", "padding": "", "width": "", "height": "" }); + $div.css( { "display": "", "border": "", "padding": "", "width": "", "height": "" } ); div = jQuery( "<div>" ); @@ -166,9 +166,9 @@ QUnit.test("innerWidth()", function( assert ) { div.remove(); QUnit.expectJqData( this, $div[ 0 ], "olddisplay" ); -}); +} ); -QUnit.test("innerHeight()", function( assert ) { +QUnit.test( "innerHeight()", function( assert ) { assert.expect( 6 ); var $div, div, @@ -179,11 +179,11 @@ QUnit.test("innerHeight()", function( assert ) { assert.equal( jQuery( document ).innerHeight(), $doc.height(), "Test on document" ); $div = jQuery( "#nothiddendiv" ); - $div.css({ + $div.css( { "margin": 10, "border": "2px solid #fff", "height": 30 - }); + } ); assert.equal( $div.innerHeight(), 30, "Test with margin and border" ); $div.css( "padding", "20px" ); @@ -192,7 +192,7 @@ QUnit.test("innerHeight()", function( assert ) { assert.equal( $div.innerHeight(), 70, "Test hidden div" ); // reset styles - $div.css({ "display": "", "border": "", "padding": "", "width": "", "height": "" }); + $div.css( { "display": "", "border": "", "padding": "", "width": "", "height": "" } ); div = jQuery( "<div>" ); @@ -201,9 +201,9 @@ QUnit.test("innerHeight()", function( assert ) { div.remove(); QUnit.expectJqData( this, $div[ 0 ], "olddisplay" ); -}); +} ); -QUnit.test("outerWidth()", function( assert ) { +QUnit.test( "outerWidth()", function( assert ) { assert.expect( 11 ); var $div, div, @@ -231,7 +231,7 @@ QUnit.test("outerWidth()", function( assert ) { assert.equal( $div.outerWidth( true ), 94, "Test hidden div with padding, border and margin with margin option" ); // reset styles - $div.css({ "position": "", "display": "", "border": "", "padding": "", "width": "", "height": "" }); + $div.css( { "position": "", "display": "", "border": "", "padding": "", "width": "", "height": "" } ); div = jQuery( "<div>" ); @@ -240,23 +240,23 @@ QUnit.test("outerWidth()", function( assert ) { div.remove(); QUnit.expectJqData( this, $div[ 0 ], "olddisplay" ); -}); +} ); -QUnit.test("child of a hidden elem (or unconnected node) has accurate inner/outer/Width()/Height() see #9441 #9300", function( assert ) { - assert.expect(16); +QUnit.test( "child of a hidden elem (or unconnected node) has accurate inner/outer/Width()/Height() see #9441 #9300", function( assert ) { + assert.expect( 16 ); // setup html - var $divNormal = jQuery("<div>").css({ "width": "100px", "height": "100px", "border": "10px solid white", "padding": "2px", "margin": "3px" }), + var $divNormal = jQuery( "<div>" ).css( { "width": "100px", "height": "100px", "border": "10px solid white", "padding": "2px", "margin": "3px" } ), $divChild = $divNormal.clone(), $divUnconnected = $divNormal.clone(), - $divHiddenParent = jQuery("<div>").css( "display", "none" ).append( $divChild ).appendTo("body"); - $divNormal.appendTo("body"); + $divHiddenParent = jQuery( "<div>" ).css( "display", "none" ).append( $divChild ).appendTo( "body" ); + $divNormal.appendTo( "body" ); // tests that child div of a hidden div works the same as a normal div assert.equal( $divChild.width(), $divNormal.width(), "child of a hidden element width() is wrong see #9441" ); assert.equal( $divChild.innerWidth(), $divNormal.innerWidth(), "child of a hidden element innerWidth() is wrong see #9441" ); assert.equal( $divChild.outerWidth(), $divNormal.outerWidth(), "child of a hidden element outerWidth() is wrong see #9441" ); - assert.equal( $divChild.outerWidth(true), $divNormal.outerWidth( true ), "child of a hidden element outerWidth( true ) is wrong see #9300" ); + assert.equal( $divChild.outerWidth( true ), $divNormal.outerWidth( true ), "child of a hidden element outerWidth( true ) is wrong see #9300" ); // Support: IE 10-11, Edge // Child height is not always decimal @@ -269,7 +269,7 @@ QUnit.test("child of a hidden elem (or unconnected node) has accurate inner/oute assert.equal( $divUnconnected.width(), $divNormal.width(), "unconnected element width() is wrong see #9441" ); assert.equal( $divUnconnected.innerWidth(), $divNormal.innerWidth(), "unconnected element innerWidth() is wrong see #9441" ); assert.equal( $divUnconnected.outerWidth(), $divNormal.outerWidth(), "unconnected element outerWidth() is wrong see #9441" ); - assert.equal( $divUnconnected.outerWidth(true), $divNormal.outerWidth( true ), "unconnected element outerWidth( true ) is wrong see #9300" ); + assert.equal( $divUnconnected.outerWidth( true ), $divNormal.outerWidth( true ), "unconnected element outerWidth( true ) is wrong see #9300" ); // Support: IE 10-11, Edge // Child height is not always decimal @@ -281,9 +281,9 @@ QUnit.test("child of a hidden elem (or unconnected node) has accurate inner/oute // teardown html $divHiddenParent.remove(); $divNormal.remove(); -}); +} ); -QUnit.test("getting dimensions shouldn't modify runtimeStyle see #9233", function( assert ) { +QUnit.test( "getting dimensions shouldn't modify runtimeStyle see #9233", function( assert ) { assert.expect( 1 ); var $div = jQuery( "<div>" ).appendTo( "#qunit-fixture" ), @@ -304,36 +304,36 @@ QUnit.test("getting dimensions shouldn't modify runtimeStyle see #9233", functio } $div.remove(); -}); +} ); QUnit.test( "table dimensions", function( assert ) { assert.expect( 2 ); - var table = jQuery("<table><colgroup><col/><col/></colgroup><tbody><tr><td></td><td>a</td></tr><tr><td></td><td>a</td></tr></tbody></table>").appendTo("#qunit-fixture"), - tdElem = table.find("td").first(), - colElem = table.find("col").first().width( 300 ); + var table = jQuery( "<table><colgroup><col/><col/></colgroup><tbody><tr><td></td><td>a</td></tr><tr><td></td><td>a</td></tr></tbody></table>" ).appendTo( "#qunit-fixture" ), + tdElem = table.find( "td" ).first(), + colElem = table.find( "col" ).first().width( 300 ); - table.find("td").css({ "margin": 0, "padding": 0 }); + table.find( "td" ).css( { "margin": 0, "padding": 0 } ); assert.equal( tdElem.width(), tdElem.width(), "width() doesn't alter dimension values of empty cells, see #11293" ); assert.equal( colElem.width(), 300, "col elements have width(), see #12243" ); -}); +} ); -QUnit.test("box-sizing:border-box child of a hidden elem (or unconnected node) has accurate inner/outer/Width()/Height() see #10413", function( assert ) { - assert.expect(16); +QUnit.test( "box-sizing:border-box child of a hidden elem (or unconnected node) has accurate inner/outer/Width()/Height() see #10413", function( assert ) { + assert.expect( 16 ); // setup html - var $divNormal = jQuery("<div>").css({ "boxSizing": "border-box", "width": "100px", "height": "100px", "border": "10px solid white", "padding": "2px", "margin": "3px" }), + var $divNormal = jQuery( "<div>" ).css( { "boxSizing": "border-box", "width": "100px", "height": "100px", "border": "10px solid white", "padding": "2px", "margin": "3px" } ), $divChild = $divNormal.clone(), $divUnconnected = $divNormal.clone(), - $divHiddenParent = jQuery("<div>").css( "display", "none" ).append( $divChild ).appendTo("body"); - $divNormal.appendTo("body"); + $divHiddenParent = jQuery( "<div>" ).css( "display", "none" ).append( $divChild ).appendTo( "body" ); + $divNormal.appendTo( "body" ); // tests that child div of a hidden div works the same as a normal div assert.equal( $divChild.width(), $divNormal.width(), "child of a hidden element width() is wrong see #10413" ); assert.equal( $divChild.innerWidth(), $divNormal.innerWidth(), "child of a hidden element innerWidth() is wrong see #10413" ); assert.equal( $divChild.outerWidth(), $divNormal.outerWidth(), "child of a hidden element outerWidth() is wrong see #10413" ); - assert.equal( $divChild.outerWidth(true), $divNormal.outerWidth( true ), "child of a hidden element outerWidth( true ) is wrong see #10413" ); + assert.equal( $divChild.outerWidth( true ), $divNormal.outerWidth( true ), "child of a hidden element outerWidth( true ) is wrong see #10413" ); // Support: IE 10-11, Edge // Child height is not always decimal @@ -346,7 +346,7 @@ QUnit.test("box-sizing:border-box child of a hidden elem (or unconnected node) h assert.equal( $divUnconnected.width(), $divNormal.width(), "unconnected element width() is wrong see #10413" ); assert.equal( $divUnconnected.innerWidth(), $divNormal.innerWidth(), "unconnected element innerWidth() is wrong see #10413" ); assert.equal( $divUnconnected.outerWidth(), $divNormal.outerWidth(), "unconnected element outerWidth() is wrong see #10413" ); - assert.equal( $divUnconnected.outerWidth(true), $divNormal.outerWidth( true ), "unconnected element outerWidth( true ) is wrong see #10413" ); + assert.equal( $divUnconnected.outerWidth( true ), $divNormal.outerWidth( true ), "unconnected element outerWidth( true ) is wrong see #10413" ); // Support: IE 10-11, Edge // Child height is not always decimal @@ -358,9 +358,9 @@ QUnit.test("box-sizing:border-box child of a hidden elem (or unconnected node) h // teardown html $divHiddenParent.remove(); $divNormal.remove(); -}); +} ); -QUnit.test("outerHeight()", function( assert ) { +QUnit.test( "outerHeight()", function( assert ) { assert.expect( 11 ); var $div, div, @@ -387,7 +387,7 @@ QUnit.test("outerHeight()", function( assert ) { assert.equal( $div.outerHeight( true ), 94, "Test hidden div with padding, border and margin with margin option" ); // reset styles - $div.css({ "display": "", "border": "", "padding": "", "width": "", "height": "" }); + $div.css( { "display": "", "border": "", "padding": "", "width": "", "height": "" } ); div = jQuery( "<div>" ); @@ -396,20 +396,20 @@ QUnit.test("outerHeight()", function( assert ) { div.remove(); QUnit.expectJqData( this, $div[ 0 ], "olddisplay" ); -}); +} ); -QUnit.test("passing undefined is a setter #5571", function( assert ) { - assert.expect(4); - assert.equal(jQuery("#nothiddendiv").height(30).height(undefined).height(), 30, ".height(undefined) is chainable (#5571)"); - assert.equal(jQuery("#nothiddendiv").height(30).innerHeight(undefined).height(), 30, ".innerHeight(undefined) is chainable (#5571)"); - assert.equal(jQuery("#nothiddendiv").height(30).outerHeight(undefined).height(), 30, ".outerHeight(undefined) is chainable (#5571)"); - assert.equal(jQuery("#nothiddendiv").width(30).width(undefined).width(), 30, ".width(undefined) is chainable (#5571)"); -}); +QUnit.test( "passing undefined is a setter #5571", function( assert ) { + assert.expect( 4 ); + assert.equal( jQuery( "#nothiddendiv" ).height( 30 ).height( undefined ).height(), 30, ".height(undefined) is chainable (#5571)" ); + assert.equal( jQuery( "#nothiddendiv" ).height( 30 ).innerHeight( undefined ).height(), 30, ".innerHeight(undefined) is chainable (#5571)" ); + assert.equal( jQuery( "#nothiddendiv" ).height( 30 ).outerHeight( undefined ).height(), 30, ".outerHeight(undefined) is chainable (#5571)" ); + assert.equal( jQuery( "#nothiddendiv" ).width( 30 ).width( undefined ).width(), 30, ".width(undefined) is chainable (#5571)" ); +} ); QUnit.test( "getters on non elements should return null", function( assert ) { assert.expect( 8 ); - var nonElem = jQuery("notAnElement"); + var nonElem = jQuery( "notAnElement" ); assert.strictEqual( nonElem.width(), null, ".width() is not null (#12283)" ); assert.strictEqual( nonElem.innerWidth(), null, ".innerWidth() is not null (#12283)" ); @@ -420,14 +420,14 @@ QUnit.test( "getters on non elements should return null", function( assert ) { assert.strictEqual( nonElem.innerHeight(), null, ".innerHeight() is not null (#12283)" ); assert.strictEqual( nonElem.outerHeight(), null, ".outerHeight() is not null (#12283)" ); assert.strictEqual( nonElem.outerHeight( true ), null, ".outerHeight(true) is not null (#12283)" ); -}); +} ); -QUnit.test("setters with and without box-sizing:border-box", function( assert ){ - assert.expect(20); +QUnit.test( "setters with and without box-sizing:border-box", function( assert ) { + assert.expect( 20 ); // Support: Android 2.3 (-webkit-box-sizing). - var el_bb = jQuery("<div style='width:114px;height:114px;margin:5px;padding:3px;border:4px solid white;-webkit-box-sizing:border-box;box-sizing:border-box;'>test</div>").appendTo("#qunit-fixture"), - el = jQuery("<div style='width:100px;height:100px;margin:5px;padding:3px;border:4px solid white;'>test</div>").appendTo("#qunit-fixture"), + var el_bb = jQuery( "<div style='width:114px;height:114px;margin:5px;padding:3px;border:4px solid white;-webkit-box-sizing:border-box;box-sizing:border-box;'>test</div>" ).appendTo( "#qunit-fixture" ), + el = jQuery( "<div style='width:100px;height:100px;margin:5px;padding:3px;border:4px solid white;'>test</div>" ).appendTo( "#qunit-fixture" ), expected = 100; assert.equal( el_bb.width( 101 ).width(), expected + 1, "test border-box width(int) by roundtripping" ); @@ -453,13 +453,13 @@ QUnit.test("setters with and without box-sizing:border-box", function( assert ){ assert.equal( el.outerHeight( 117 ).height(), expected + 3, "test border-box outerHeight(int) by roundtripping" ); assert.equal( el.outerHeight( 118, false ).height(), expected + 4, "test border-box outerHeight(int, false) by roundtripping" ); assert.equal( el.outerHeight( 129, true ).height(), expected + 5, "test border-box innerHeight(int, true) by roundtripping" ); -}); +} ); testIframe( "dimensions/documentLarge", "window vs. large document", function( jQuery, window, document, assert ) { - assert.expect(2); + assert.expect( 2 ); assert.ok( jQuery( document ).height() > jQuery( window ).height(), "document height is larger than window height" ); assert.ok( jQuery( document ).width() > jQuery( window ).width(), "document width is larger than window width" ); @@ -472,15 +472,15 @@ QUnit.test( "allow modification of coordinates argument (gh-1848)", function( as var offsetTop, element = jQuery( "<div/>" ).appendTo( "#qunit-fixture" ); - element.offset(function( index, coords ) { + element.offset( function( index, coords ) { coords.top = 100; return coords; - }); + } ); offsetTop = element.offset().top; - assert.ok( Math.abs(offsetTop - 100) < 0.02, - "coordinates are modified (got offset.top: " + offsetTop + ")"); -}); + assert.ok( Math.abs( offsetTop - 100 ) < 0.02, + "coordinates are modified (got offset.top: " + offsetTop + ")" ); +} ); -})(); +} )(); |