I\'m trying to convince a page that it is the window.top even though it is in an iframe.
In FF you can do
window.defineGetter(\'top\', fu
Use this:
Object.defineProperty(window, "parent", { get: function() {return window;} } );
More info here.