Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
5.1.0.3, 5.1.0.4
-
None
Description
What steps will reproduce the problem?
1. Use Internetexplorer 6
2. Use a fixed CSS page layout without body background-image
3. Upload your webapp to an SSL secured Webspace
What is the expected output? What do you see instead?
I expect the site to load without problems. Instead, on every pageload i
get a warning, that the SSL-secured site contains insecure items.
I figured out, that blackbird is causing this behaviour. If i remove the blackbird code in the /assets/virtual/XXXXXX==.js file, everything is okay. I assume, that this lines of code ar causing the message:
<snip>
function backgroundImage()
{
//(IE6 only) change <BODY> tag's background to resolve
//
support
var bodyTag = $(document.body);
if (bodyTag.currentStyle && IE6_POSITION_FIXED)
{
if (bodyTag.currentStyle.backgroundImage == 'none')
if (bodyTag.currentStyle.backgroundAttachment == 'scroll')
{ bodyTag.style.backgroundAttachment = 'fixed'; } }
}
</snip>
I believe, that the background Image 'about:blank' is treated as non-secured content.
I could fix this, with using a space gif in my css layout as body background-image
I filed a bug at the googlecode blackbird project site: http://code.google.com/p/blackbirdjs/issues/detail?id=20