diff options
author | timmywil <tim.willison@thisismedium.com> | 2011-04-09 15:56:35 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-04-09 15:56:35 -0400 |
commit | 17afd80d485b4ca36145a40fd7ac8f81f7099f7c (patch) | |
tree | e1b0c8af748662955bacb26538fd5d515c0ee35a /test | |
parent | 6f79bee3e3ea874f27389a7e691c1bd7541f2ef6 (diff) | |
download | jquery-17afd80d485b4ca36145a40fd7ac8f81f7099f7c.tar.gz jquery-17afd80d485b4ca36145a40fd7ac8f81f7099f7c.zip |
IE8 testing for lowercasing the css properties on retrieving style; had assumed the style support check failed in IE8, which it now does
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/attributes.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/attributes.js b/test/unit/attributes.js index 4289bc3b7..3611b03eb 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -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); |