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:
parent
6f79bee3e3
commit
17afd80d48
2 changed files with 5 additions and 5 deletions
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
div.style.display = "none";
|
div.style.display = "none";
|
||||||
div.setAttribute("className", "t");
|
div.setAttribute("className", "t");
|
||||||
div.innerHTML = " <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";
|
div.innerHTML = " <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>";
|
||||||
|
|
||||||
var all = div.getElementsByTagName("*"),
|
var all = div.getElementsByTagName("*"),
|
||||||
a = div.getElementsByTagName("a")[0],
|
a = div.getElementsByTagName("a")[0],
|
||||||
|
@ -34,8 +34,8 @@
|
||||||
htmlSerialize: !!div.getElementsByTagName("link").length,
|
htmlSerialize: !!div.getElementsByTagName("link").length,
|
||||||
|
|
||||||
// Get the style information from getAttribute
|
// Get the style information from getAttribute
|
||||||
// (IE uses .cssText insted)
|
// (IE uses .cssText instead, and capitalizes all property names)
|
||||||
style: /red/.test( a.getAttribute("style") ),
|
style: /top/.test( a.getAttribute("style") ),
|
||||||
|
|
||||||
// Make sure that URLs aren't manipulated
|
// Make sure that URLs aren't manipulated
|
||||||
// (IE normalizes it by default)
|
// (IE normalizes it by default)
|
||||||
|
|
|
@ -110,8 +110,8 @@ test("attr(String)", function() {
|
||||||
equals( jQuery('#tAnchor5').attr('href'), "#5", 'Check for non-absolute href (an anchor)' );
|
equals( jQuery('#tAnchor5').attr('href'), "#5", 'Check for non-absolute href (an anchor)' );
|
||||||
|
|
||||||
// list attribute is readonly by default in browsers that support it
|
// list attribute is readonly by default in browsers that support it
|
||||||
jQuery("#list-test").attr("list", "datalist");
|
jQuery('#list-test').attr('list', 'datalist');
|
||||||
equals( jQuery("#list-test").attr("list"), "datalist", "Check setting list attribute" );
|
equals( jQuery('#list-test').attr('list'), 'datalist', 'Check setting list attribute' );
|
||||||
|
|
||||||
// Related to [5574] and [5683]
|
// Related to [5574] and [5683]
|
||||||
var body = document.body, $body = jQuery(body);
|
var body = document.body, $body = jQuery(body);
|
||||||
|
|
Loading…
Add table
Reference in a new issue