aja hier die lösung:
You are using the wrong constructor. HTMLElement is used for HTML elements and not for the window. The reason why the first one works in Mozilla is that clientHeight is already defined and nothing is done.
Window.prototype.__defineGetter__("screenTop", function () {
return this.screenY;
};
|