Skip to content

Commit

Permalink
Tweaked anchor test to work better on Blackberry 4.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeresig committed Aug 26, 2010
1 parent 94f35d0 commit dc060f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/attributes.js
Expand Up @@ -30,7 +30,8 @@ test("attr(String)", function() {
equals( jQuery('#foo').attr('nodeName').toUpperCase(), 'DIV', 'Check for nodeName attribute' );
equals( jQuery('#foo').attr('tagName').toUpperCase(), 'DIV', 'Check for tagName attribute' );

jQuery('<a id="tAnchor5"></a>').attr('href', '#5').appendTo('#main'); // using innerHTML in IE causes href attribute to be serialized to the full path
// using innerHTML in IE causes href attribute to be serialized to the full path
jQuery('<a/>').attr({ 'id': 'tAnchor5', 'href': '#5' }).appendTo('#main');
equals( jQuery('#tAnchor5').attr('href'), "#5", 'Check for non-absolute href (an anchor)' );

equals( jQuery("<option/>").attr("selected"), false, "Check selected attribute on disconnected element." );
Expand Down

0 comments on commit dc060f0

Please sign in to comment.