diff options
author | Yehuda Katz <wycats@Yehuda-Katz.local> | 2009-12-09 21:15:49 -0800 |
---|---|---|
committer | Yehuda Katz <wycats@Yehuda-Katz.local> | 2009-12-09 21:17:10 -0800 |
commit | 1a4d1904ae8631f94b7400d99af24d3fe2f33ecd (patch) | |
tree | 5abaa5ef73f77ae556112a413c767f8a37d25614 /test | |
parent | b3cee01820adde707428d68fcf02b0fdf53fe527 (diff) | |
download | jquery-1a4d1904ae8631f94b7400d99af24d3fe2f33ecd.tar.gz jquery-1a4d1904ae8631f94b7400d99af24d3fe2f33ecd.zip |
Fix up whitespace and a couple of glitches.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/attributes.js | 20 | ||||
-rw-r--r-- | test/unit/manipulation.js | 12 |
2 files changed, 16 insertions, 16 deletions
diff --git a/test/unit/attributes.js b/test/unit/attributes.js index a95b3f9c5..6b18f99d0 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -81,8 +81,8 @@ test("attr(Hash)", function() { if ( this.getAttribute('foo') != "baz" && this.getAttribute('zoo') != "ping" ) pass = false; }); ok( pass, "Set Multiple Attributes" ); - equals( jQuery('#text1').attr({'value': function() { return this.id; }})[0].value, "text1", "Set attribute to computed value #1" ); - equals( jQuery('#text1').attr({'title': function(i) { return i; }}).attr('title'), "0", "Set attribute to computed value #2"); + equals( jQuery('#text1').attr({'value': function() { return this.id; }})[0].value, "text1", "Set attribute to computed value #1" ); + equals( jQuery('#text1').attr({'title': function(i) { return i; }}).attr('title'), "0", "Set attribute to computed value #2"); }); @@ -314,11 +314,11 @@ var testAddClass = function(valueObj) { } test("addClass(String)", function() { - testAddClass(bareObj); + testAddClass(bareObj); }); test("addClass(Function)", function() { - testAddClass(functionReturningObj); + testAddClass(functionReturningObj); }); var testRemoveClass = function(valueObj) { @@ -355,11 +355,11 @@ var testRemoveClass = function(valueObj) { }; test("removeClass(String) - simple", function() { - testRemoveClass(bareObj); + testRemoveClass(bareObj); }); test("removeClass(Function) - simple", function() { - testRemoveClass(functionReturningObj); + testRemoveClass(functionReturningObj); }); var testToggleClass = function(valueObj) { @@ -415,11 +415,11 @@ var testToggleClass = function(valueObj) { }; test("toggleClass(String|boolean|undefined[, boolean])", function() { - testToggleClass(bareObj); + testToggleClass(bareObj); }); test("toggleClass(Function[, boolean])", function() { - testToggleClass(functionReturningObj); + testToggleClass(functionReturningObj); }); var testRemoveAttr = function(valueObj) { @@ -428,11 +428,11 @@ var testRemoveAttr = function(valueObj) { }; test("removeAttr(String)", function() { - testRemoveAttr(bareObj); + testRemoveAttr(bareObj); }); test("removeAttr(Function)", function() { - testRemoveAttr(functionReturningObj); + testRemoveAttr(functionReturningObj); }); test("addClass, removeClass, hasClass", function() { diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index 8c3d1a55e..03f8f32c8 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -105,7 +105,7 @@ test("wrapAll(String|Element)", function() { // TODO: Figure out why each(wrapAll) is not equivalent to wrapAll // test("wrapAll(Function)", function() { -// testWrapAll(functionReturningObj); +// testWrapAll(functionReturningObj); // }) var testWrapInner = function(val) { @@ -130,7 +130,7 @@ test("wrapInner(String|Element)", function() { // TODO: wrapInner uses wrapAll -- get wrapAll working with Function // test("wrapInner(Function)", function() { -// testWrapInner(functionReturningObj) +// testWrapInner(functionReturningObj) // }) var testUnwrap = function() { @@ -251,7 +251,7 @@ var testAppend = function(valueObj) { } test("append(String|Element|Array<Element>|jQuery)", function() { - testAppend(bareObj); + testAppend(bareObj); }); test("append(Function)", function() { @@ -658,9 +658,9 @@ var testVal = function(valueObj) { jQuery("#select1").val(valueObj( 2 )); equals( jQuery("#select1").val(), "2", "Check for modified (via val(Number)) value of select element" ); - jQuery("#select1").append("<option value='4'>four</option>"); - jQuery("#select1").val(valueObj( 4 )); - equals( jQuery("#select1").val(), "4", "Should be possible to set the val() to a newly created option" ); + jQuery("#select1").append("<option value='4'>four</option>"); + jQuery("#select1").val(valueObj( 4 )); + equals( jQuery("#select1").val(), "4", "Should be possible to set the val() to a newly created option" ); // using contents will get comments regular, text, and comment nodes var j = jQuery("#nonnodes").contents(); |