0
@@ -81,8 +81,8 @@ test("attr(Hash)", function() {
0
if ( this.getAttribute('foo') != "baz" && this.getAttribute('zoo') != "ping" ) pass = false;
0
ok( pass, "Set Multiple Attributes" );
0
- equals( jQuery('#text1').attr({'value': function() { return this.id; }})[0].value, "text1", "Set attribute to computed value #1" );
0
- equals( jQuery('#text1').attr({'title': function(i) { return i; }}).attr('title'), "0", "Set attribute to computed value #2");
0
+ equals( jQuery('#text1').attr({'value': function() { return this.id; }})[0].value, "text1", "Set attribute to computed value #1" );
0
+ equals( jQuery('#text1').attr({'title': function(i) { return i; }}).attr('title'), "0", "Set attribute to computed value #2");
0
@@ -314,11 +314,11 @@ var testAddClass = function(valueObj) {
0
test("addClass(String)", function() {
0
-
testAddClass(bareObj);
0
+
testAddClass(bareObj);
0
test("addClass(Function)", function() {
0
-
testAddClass(functionReturningObj);
0
+
testAddClass(functionReturningObj);
0
var testRemoveClass = function(valueObj) {
0
@@ -355,11 +355,11 @@ var testRemoveClass = function(valueObj) {
0
test("removeClass(String) - simple", function() {
0
-
testRemoveClass(bareObj);
0
+
testRemoveClass(bareObj);
0
test("removeClass(Function) - simple", function() {
0
-
testRemoveClass(functionReturningObj);
0
+
testRemoveClass(functionReturningObj);
0
var testToggleClass = function(valueObj) {
0
@@ -415,11 +415,11 @@ var testToggleClass = function(valueObj) {
0
test("toggleClass(String|boolean|undefined[, boolean])", function() {
0
-
testToggleClass(bareObj);
0
+
testToggleClass(bareObj);
0
test("toggleClass(Function[, boolean])", function() {
0
-
testToggleClass(functionReturningObj);
0
+
testToggleClass(functionReturningObj);
0
var testRemoveAttr = function(valueObj) {
0
@@ -428,11 +428,11 @@ var testRemoveAttr = function(valueObj) {
0
test("removeAttr(String)", function() {
0
-
testRemoveAttr(bareObj);
0
+
testRemoveAttr(bareObj);
0
test("removeAttr(Function)", function() {
0
-
testRemoveAttr(functionReturningObj);
0
+
testRemoveAttr(functionReturningObj);
0
test("addClass, removeClass, hasClass", function() {