From 25118e22a204c5396f1265feb5cbfd71f35033e3 Mon Sep 17 00:00:00 2001 From: timmywil Date: Wed, 18 May 2011 11:46:22 -0400 Subject: Handle unset value attributes consistently depending on property existence. Supplements #9328. --- test/unit/attributes.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/unit/attributes.js b/test/unit/attributes.js index 546aaffa5..c4ed7d30f 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -40,7 +40,7 @@ test("jQuery.attrFix/jQuery.propFix integrity test", function() { }); test("attr(String)", function() { - expect(43); + expect(45); equals( jQuery("#text1").attr("type"), "text", "Check for type attribute" ); equals( jQuery("#radio1").attr("type"), "radio", "Check for type attribute" ); @@ -126,6 +126,8 @@ test("attr(String)", function() { ok( jQuery("
").attr("title") === undefined, "Make sure undefined is returned when no attribute is found." ); equal( jQuery("
").attr("title", "something").attr("title"), "something", "Set the title attribute." ); ok( jQuery().attr("doesntexist") === undefined, "Make sure undefined is returned when no element is there." ); + equal( jQuery("
").attr("value"), undefined, "An unset value on a div returns undefined." ); + equal( jQuery("").attr("value"), "", "An unset value on an input returns current value." ); }); if ( !isLocal ) { -- cgit v1.2.3