aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/dimensions.js
diff options
context:
space:
mode:
authorlouisremi <louisremi@louisremi-laptop.(none)>2011-04-12 10:47:46 +0200
committerlouisremi <louisremi@louisremi-laptop.(none)>2011-04-12 10:47:46 +0200
commitf42010b6574af9e57b3782eced61a7d955bf06d6 (patch)
tree8ed53591c8811f0a14feeb6361c5d3b12f561096 /test/unit/dimensions.js
parent11adde5127ec496cf692237ea0d4f6217eac97b8 (diff)
downloadjquery-f42010b6574af9e57b3782eced61a7d955bf06d6.tar.gz
jquery-f42010b6574af9e57b3782eced61a7d955bf06d6.zip
third batch
Diffstat (limited to 'test/unit/dimensions.js')
-rw-r--r--test/unit/dimensions.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/unit/dimensions.js b/test/unit/dimensions.js
index fa59a9f77..641165f4f 100644
--- a/test/unit/dimensions.js
+++ b/test/unit/dimensions.js
@@ -34,7 +34,7 @@ function testWidth( val ) {
equals( blah.width( val(10) ), blah, "Make sure that setting a width on an empty set returns the set." );
equals( blah.width(), null, "Make sure 'null' is returned on an empty set");
- jQuery.removeData($div[0], 'olddisplay', true);
+ jQuery.removeData($div[0], "olddisplay", true);
}
test("width()", function() {
@@ -83,7 +83,7 @@ function testHeight( val ) {
equals( blah.height( val(10) ), blah, "Make sure that setting a height on an empty set returns the set." );
equals( blah.height(), null, "Make sure 'null' is returned on an empty set");
- jQuery.removeData($div[0], 'olddisplay', true);
+ jQuery.removeData($div[0], "olddisplay", true);
}
test("height()", function() {
@@ -132,7 +132,7 @@ test("innerWidth()", function() {
equals( div.innerWidth(), 0, "Make sure that disconnected nodes are handled." );
div.remove();
- jQuery.removeData($div[0], 'olddisplay', true);
+ jQuery.removeData($div[0], "olddisplay", true);
});
test("innerHeight()", function() {
@@ -161,7 +161,7 @@ test("innerHeight()", function() {
equals( div.innerHeight(), 0, "Make sure that disconnected nodes are handled." );
div.remove();
- jQuery.removeData($div[0], 'olddisplay', true);
+ jQuery.removeData($div[0], "olddisplay", true);
});
test("outerWidth()", function() {
@@ -191,7 +191,7 @@ test("outerWidth()", function() {
equals( div.outerWidth(), 0, "Make sure that disconnected nodes are handled." );
div.remove();
- jQuery.removeData($div[0], 'olddisplay', true);
+ jQuery.removeData($div[0], "olddisplay", true);
});
test("outerHeight()", function() {
@@ -220,5 +220,5 @@ test("outerHeight()", function() {
equals( div.outerHeight(), 0, "Make sure that disconnected nodes are handled." );
div.remove();
- jQuery.removeData($div[0], 'olddisplay', true);
+ jQuery.removeData($div[0], "olddisplay", true);
});