diff options
-rw-r--r-- | build/test/index.html | 2 | ||||
-rw-r--r-- | src/jquery/coreTest.js | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/build/test/index.html b/build/test/index.html index ffeb9f9b1..1a00fd78a 100644 --- a/build/test/index.html +++ b/build/test/index.html @@ -30,7 +30,7 @@ <div id="foo"> <p id="sndp">Everything inside the red border is inside a div with <code>id="foo"</code>.</p> <p lang="en" id="en">This is a normal link: <a id="yahoo" href="http://www.yahoo.com/" class="blogTest">Yahoo</a></p> - <p id="sap">This link has <code><a href="http://smin/#2" id="anchor2">class="blog"</a></code>: <a href="http://simon.incutio.com/" class="blog link" id="simon">Simon Willison's Weblog</a></p> + <p id="sap">This link has <code><a href="#2" id="anchor2">class="blog"</a></code>: <a href="http://simon.incutio.com/" class="blog link" id="simon">Simon Willison's Weblog</a></p> </div> <p id="first">Try them out:</p> diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index 6b73b0cf7..a75331558 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -74,7 +74,7 @@ test("index(Object)", function() { });
test("attr(String)", function() {
- expect(12);
+ expect(13);
ok( $('#text1').attr('value') == "Test", 'Check for value attribute' );
ok( $('#text1').attr('type') == "text", 'Check for type attribute' );
ok( $('#radio1').attr('type') == "radio", 'Check for type attribute' );
@@ -87,6 +87,7 @@ test("attr(String)", function() { ok( $('#name').attr('name') == "name", 'Check for name attribute' );
ok( $('#text1').attr('name') == "action", 'Check for name attribute' );
ok( $('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' );
+ ok( $('#anchor2').attr('href') == "#2", 'Check for non-absolute href (an anchor)' );
});
test("attr(String, Function)", function() {
|