IE8 testing for lowercasing the css properties on retrieving style; had assumed the style support check failed in IE8, which it now does

This commit is contained in:
timmywil 2011-04-09 15:56:35 -04:00
parent 6f79bee3e3
commit 17afd80d48
2 changed files with 5 additions and 5 deletions

View file

@ -110,8 +110,8 @@ test("attr(String)", function() {
equals( jQuery('#tAnchor5').attr('href'), "#5", 'Check for non-absolute href (an anchor)' );
// list attribute is readonly by default in browsers that support it
jQuery("#list-test").attr("list", "datalist");
equals( jQuery("#list-test").attr("list"), "datalist", "Check setting list attribute" );
jQuery('#list-test').attr('list', 'datalist');
equals( jQuery('#list-test').attr('list'), 'datalist', 'Check setting list attribute' );
// Related to [5574] and [5683]
var body = document.body, $body = jQuery(body);