mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
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:
@@ -8,7 +8,7 @@
|
||||
|
||||
div.style.display = "none";
|
||||
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("*"),
|
||||
a = div.getElementsByTagName("a")[0],
|
||||
@@ -34,8 +34,8 @@
|
||||
htmlSerialize: !!div.getElementsByTagName("link").length,
|
||||
|
||||
// Get the style information from getAttribute
|
||||
// (IE uses .cssText insted)
|
||||
style: /red/.test( a.getAttribute("style") ),
|
||||
// (IE uses .cssText instead, and capitalizes all property names)
|
||||
style: /top/.test( a.getAttribute("style") ),
|
||||
|
||||
// Make sure that URLs aren't manipulated
|
||||
// (IE normalizes it by default)
|
||||
|
||||
Reference in New Issue
Block a user