X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fjquery%2FcoreTest.js;h=78d4a275fdb37645ba34e3a31787cf82ccead227;hb=5acecf6e2814701f9e22f91f17fcb33ef910e88a;hp=169380bd0e91b35f50f2d27d1d60de14e14c193e;hpb=4451a83407b396a3e52b83667fe51a10bfb31289;p=jquery.git diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index 169380b..78d4a27 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -67,9 +67,13 @@ test("attr(String)", function() { ok( $('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' ); }); -test("attr(String, Function)", function() { +test("attr(String, Function|String)", 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" ); + reset(); + $('#text1, #text2').attr({value: "${this.id + 'foobar'}"}); + ok( $('#text1')[0].value == "text1foobar", "Set value from id" ); + ok( $('#text2')[0].value == "text2foobar", "Set value from id" ); }); test("attr(Hash)", function() { @@ -431,3 +435,7 @@ test("removeAttr(String", function() { ok( $('#mark').removeAttr("class")[0].className == "", "remove class" ); }); +test("text(String, Boolean)", function() { + ok( $("#foo").text("
Hello cruel world!
")[0].innerHTML == "<div><b>Hello</b> cruel world!</div>", "Check escaped text" ); + ok( $("#foo").text("
Hello cruel world!
", true)[0].innerHTML == "Hello cruel world!", "Check stripped text" ); +}); \ No newline at end of file