I found the source of the problem, but it took some copying.
First, Eric Law came up with a prototype tool (exe) in another answer that helped identify the problem.
Insecure resource:
data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=
The problem is that IE6 does not support data URIs, so we do not use them. So where did it come from?
It turns out that jQuery UI 1.8 is a problem, in particular, a fix for another CSS error :
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; /* http://bugs.jqueryui.com/ticket/7233 - Resizable: resizable handles fail to work in IE if transparent and content overlaps */ background-image:url(data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=); }
Others seem to have noticed this issue as well , and it was fixed in the latest jQuery UI CSS (1.9 or higher).
My solution was to replace it with a regular url for an empty gif, the problem is resolved.
Keith
source share