I am aiming to change the reference to the uppermost window for all scripts executed in an iframe. An example code has successfully worked on IE 8+ and FireFox 3,6+, but it fails when tested on Chrome 19.
var top = "test";
console.debug(top);
While this code displays "test" in IE and FireFox, it showcases a reference to the top window in Chrome. Could it be that Chrome has a mechanism in place to prevent overriding the reference?