aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/dimensions.js
diff options
context:
space:
mode:
authorRichard Gibson <richard.gibson@gmail.com>2014-12-06 13:30:31 -0500
committerRichard Gibson <richard.gibson@gmail.com>2014-12-06 13:30:31 -0500
commit906caebb3f3bc542904a94846e778aa8d71c0575 (patch)
tree2a3771dc9013cfc3a53bbea8725e61cbb1d3c5ee /test/unit/dimensions.js
parent3c13f4c6297566a71102c2362347987f6d6a636e (diff)
downloadjquery-906caebb3f3bc542904a94846e778aa8d71c0575.tar.gz
jquery-906caebb3f3bc542904a94846e778aa8d71c0575.zip
Tests: Tilt at a few style guide windmills
Ref 3c13f4c6297566a71102c2362347987f6d6a636e
Diffstat (limited to 'test/unit/dimensions.js')
-rw-r--r--test/unit/dimensions.js88
1 files changed, 43 insertions, 45 deletions
diff --git a/test/unit/dimensions.js b/test/unit/dimensions.js
index aee29547e..d0e7ea2b8 100644
--- a/test/unit/dimensions.js
+++ b/test/unit/dimensions.js
@@ -134,7 +134,7 @@ test("height(Function(args))", function() {
});
test("innerWidth()", function() {
- expect(6);
+ expect( 6 );
var $div, div,
$win = jQuery( window ),
@@ -143,19 +143,18 @@ test("innerWidth()", function() {
equal( jQuery( window ).innerWidth(), $win.width(), "Test on window" );
equal( jQuery( document ).innerWidth(), $doc.width(), "Test on document" );
- $div = jQuery("#nothiddendiv");
- // set styles
+ $div = jQuery( "#nothiddendiv" );
$div.css({
"margin": 10,
"border": "2px solid #fff",
"width": 30
});
- equal($div.innerWidth(), 30, "Test with margin and border");
- $div.css("padding", "20px");
- equal($div.innerWidth(), 70, "Test with margin, border and padding");
+ equal( $div.innerWidth(), 30, "Test with margin and border" );
+ $div.css( "padding", "20px" );
+ equal( $div.innerWidth(), 70, "Test with margin, border and padding" );
$div.hide();
- equal($div.innerWidth(), 70, "Test hidden div");
+ equal( $div.innerWidth(), 70, "Test hidden div" );
// reset styles
$div.css({ "display": "", "border": "", "padding": "", "width": "", "height": "" });
@@ -166,11 +165,11 @@ test("innerWidth()", function() {
equal( div.innerWidth(), 0, "Make sure that disconnected nodes are handled." );
div.remove();
- QUnit.expectJqData( this, $div[0], "olddisplay" );
+ QUnit.expectJqData( this, $div[ 0 ], "olddisplay" );
});
test("innerHeight()", function() {
- expect(6);
+ expect( 6 );
var $div, div,
$win = jQuery( window ),
@@ -179,19 +178,18 @@ test("innerHeight()", function() {
equal( jQuery( window ).innerHeight(), $win.height(), "Test on window" );
equal( jQuery( document ).innerHeight(), $doc.height(), "Test on document" );
- $div = jQuery("#nothiddendiv");
- // set styles
+ $div = jQuery( "#nothiddendiv" );
$div.css({
"margin": 10,
"border": "2px solid #fff",
"height": 30
});
- equal($div.innerHeight(), 30, "Test with margin and border");
- $div.css("padding", "20px");
- equal($div.innerHeight(), 70, "Test with margin, border and padding");
+ equal( $div.innerHeight(), 30, "Test with margin and border" );
+ $div.css( "padding", "20px" );
+ equal( $div.innerHeight(), 70, "Test with margin, border and padding" );
$div.hide();
- equal($div.innerHeight(), 70, "Test hidden div");
+ equal( $div.innerHeight(), 70, "Test hidden div" );
// reset styles
$div.css({ "display": "", "border": "", "padding": "", "width": "", "height": "" });
@@ -202,11 +200,11 @@ test("innerHeight()", function() {
equal( div.innerHeight(), 0, "Make sure that disconnected nodes are handled." );
div.remove();
- QUnit.expectJqData( this, $div[0], "olddisplay" );
+ QUnit.expectJqData( this, $div[ 0 ], "olddisplay" );
});
test("outerWidth()", function() {
- expect(11);
+ expect( 11 );
var $div, div,
$win = jQuery( window ),
@@ -217,20 +215,20 @@ test("outerWidth()", function() {
equal( jQuery( document ).outerWidth(), $doc.width(), "Test on document without margin option" );
equal( jQuery( document ).outerWidth( true ), $doc.width(), "Test on document with margin option" );
- $div = jQuery("#nothiddendiv");
- $div.css("width", 30);
-
- equal($div.outerWidth(), 30, "Test with only width set");
- $div.css("padding", "20px");
- equal($div.outerWidth(), 70, "Test with padding");
- $div.css("border", "2px solid #fff");
- equal($div.outerWidth(), 74, "Test with padding and border");
- $div.css("margin", "10px");
- equal($div.outerWidth(), 74, "Test with padding, border and margin without margin option");
- $div.css("position", "absolute");
- equal($div.outerWidth(true), 94, "Test with padding, border and margin with margin option");
+ $div = jQuery( "#nothiddendiv" );
+ $div.css( "width", 30 );
+
+ equal( $div.outerWidth(), 30, "Test with only width set" );
+ $div.css( "padding", "20px" );
+ equal( $div.outerWidth(), 70, "Test with padding" );
+ $div.css( "border", "2px solid #fff" );
+ equal( $div.outerWidth(), 74, "Test with padding and border" );
+ $div.css( "margin", "10px" );
+ equal( $div.outerWidth(), 74, "Test with padding, border and margin without margin option" );
+ $div.css( "position", "absolute" );
+ equal( $div.outerWidth( true ), 94, "Test with padding, border and margin with margin option" );
$div.hide();
- equal($div.outerWidth(true), 94, "Test hidden div with padding, border and margin with margin option");
+ 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": "" });
@@ -241,7 +239,7 @@ test("outerWidth()", function() {
equal( div.outerWidth(), 0, "Make sure that disconnected nodes are handled." );
div.remove();
- QUnit.expectJqData( this, $div[0], "olddisplay" );
+ QUnit.expectJqData( this, $div[ 0 ], "olddisplay" );
});
test("child of a hidden elem (or unconnected node) has accurate inner/outer/Width()/Height() see #9441 #9300", function() {
@@ -353,7 +351,7 @@ test("box-sizing:border-box child of a hidden elem (or unconnected node) has acc
});
test("outerHeight()", function() {
- expect(11);
+ expect( 11 );
var $div, div,
$win = jQuery( window ),
@@ -364,19 +362,19 @@ test("outerHeight()", function() {
equal( jQuery( document ).outerHeight(), $doc.height(), "Test on document without margin option" );
equal( jQuery( document ).outerHeight( true ), $doc.height(), "Test on document with margin option" );
- $div = jQuery("#nothiddendiv");
- $div.css("height", 30);
-
- equal($div.outerHeight(), 30, "Test with only width set");
- $div.css("padding", "20px");
- equal($div.outerHeight(), 70, "Test with padding");
- $div.css("border", "2px solid #fff");
- equal($div.outerHeight(), 74, "Test with padding and border");
- $div.css("margin", "10px");
- equal($div.outerHeight(), 74, "Test with padding, border and margin without margin option");
- equal($div.outerHeight(true), 94, "Test with padding, border and margin with margin option");
+ $div = jQuery( "#nothiddendiv" );
+ $div.css( "height", 30 );
+
+ equal( $div.outerHeight(), 30, "Test with only width set" );
+ $div.css( "padding", "20px" );
+ equal( $div.outerHeight(), 70, "Test with padding" );
+ $div.css( "border", "2px solid #fff" );
+ equal( $div.outerHeight(), 74, "Test with padding and border" );
+ $div.css( "margin", "10px" );
+ equal( $div.outerHeight(), 74, "Test with padding, border and margin without margin option" );
+ equal( $div.outerHeight( true ), 94, "Test with padding, border and margin with margin option" );
$div.hide();
- equal($div.outerHeight(true), 94, "Test hidden div with padding, border and margin with margin option");
+ 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": "" });
@@ -387,7 +385,7 @@ test("outerHeight()", function() {
equal( div.outerHeight(), 0, "Make sure that disconnected nodes are handled." );
div.remove();
- QUnit.expectJqData( this, $div[0], "olddisplay" );
+ QUnit.expectJqData( this, $div[ 0 ], "olddisplay" );
});
test("passing undefined is a setter #5571", function() {