From: Jörn Zaefferer Date: Sun, 7 Jan 2007 12:13:32 +0000 (+0000) Subject: Test for #753 X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=4451a83407b396a3e52b83667fe51a10bfb31289;p=jquery.git Test for #753 --- diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index beb5735..169380b 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -67,6 +67,11 @@ test("attr(String)", function() { ok( $('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' ); }); +test("attr(String, Function)", function() { + ok( $('#text1').attr('value', function() { return this.id })[0].value == "text1", "Set value from id" ); + ok( $('#text2').attr('value', "${this.id}")[0].value == "text2", "Set value from id" ); +}); + test("attr(Hash)", function() { expect(1); var pass = true; @@ -87,7 +92,7 @@ test("attr(String, Object)", function() { ok( pass, "Set Attribute" ); $("#name").attr('name', 'something'); - ok( $("#name").name() == 'something', 'Set name attribute' ); + ok( $("#name").attr('name') == 'something', 'Set name attribute' ); $("#check2").attr('checked', true); ok( document.getElementById('check2').checked == true, 'Set checked attribute' ); $("#check2").attr('checked', false);