Estoy intentando utilizar Chrome-Frame en un sitio que estoy construyendo. En IE8 y abajo, todo funciona bien ... En IE9 me sale este error:Marco de Chrome: Acceso denegado error en IE9
SCRIPT5: Access is denied.
cf-dlpage.js, line78 character 209
Ni idea de qué hacer!
aquí es el condicional que está provocando el comportamiento:
<!--[if lte IE 9]>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
<style>
body {
overflow-y:hidden;
}
.chromeFrameOverlayContent {
border:none;
overflow:hidden;
}
.chromeFrameOverlayContent iframe {
border:none;
overflow:hidden;
}
.chromeFrameOverlayCloseBar {
display:none;
}
.chromeFrameOverlayUnderlay {
background-image:url(/img/bg.png);
opacity: 1;
filter: alpha(opacity = 100);
}
</style>
<script type="text/javascript">
window.onload = function() {
CFInstall.check({
url: "/fix/update.html",
mode: "overlay",
destination: "/"
});
};
</script>
<![endif]-->
Cualquier ayuda muy apreciada!
Boleto relacionado aquí: http://code.google.com/p/chromium/issues/detail?id=135297 –