Skip to content

Commit

Permalink
Added two more tweaks for XHTML core tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeresig committed Jan 19, 2009
1 parent 9db710a commit 4e7d565
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,8 @@ test("attr(String)", function() {
equals( jQuery('#text1').attr('maxLength'), '30', 'Check for maxLength attribute' );
equals( jQuery('#area1').attr('maxLength'), '30', 'Check for maxLength attribute' );
equals( jQuery('#select2').attr('selectedIndex'), 3, 'Check for selectedIndex attribute' );
equals( jQuery('#foo').attr('nodeName'), 'DIV', 'Check for nodeName attribute' );
equals( jQuery('#foo').attr('tagName'), 'DIV', 'Check for tagName attribute' );
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
equals( jQuery('#tAnchor5').attr('href'), "#5", 'Check for non-absolute href (an anchor)' );
Expand Down

0 comments on commit 4e7d565

Please sign in to comment.