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
I'd maybe try using the "define getter" notation that John Resig uses in his article on the topic:
Window.prototype.__defineGetter__('top',function(){return this;});