Fixing bug 6886. window.outerWidth and window.outerHeight for (i)frames now return the dimensions of the browser window. This is the way 4.x handles these properties.

This commit is contained in:
nisheeth%netscape.com 1999-07-28 07:03:29 +00:00
Родитель 1458ecf3e7
Коммит 4bcb36a368
1 изменённых файлов: 15 добавлений и 50 удалений

Просмотреть файл

@ -917,34 +917,17 @@ NS_IMETHODIMP
GlobalWindowImpl::GetOuterWidth(PRInt32* aOuterWidth)
{
nsIBrowserWindow *mBrowser;
nsIDOMWindow* parent = nsnull;
GetParent(&parent);
if (parent == this) {
// We are in a top level window. Use browser window's bounds.
if (NS_OK == GetBrowserWindowInterface(mBrowser)) {
nsRect r;
mBrowser->GetWindowBounds(r);
*aOuterWidth = r.width;
NS_RELEASE(mBrowser);
}
else {
*aOuterWidth = 0;
}
if (NS_OK == GetBrowserWindowInterface(mBrowser)) {
nsRect r;
mBrowser->GetWindowBounds(r);
*aOuterWidth = r.width;
NS_RELEASE(mBrowser);
}
else {
// We are in an (i)frame. Use webshell bounds.
if (mWebShell) {
PRInt32 x,y,w,h;
mWebShell->GetBounds(x, y, w, h);
*aOuterWidth = w;
}
else {
*aOuterWidth = 0;
}
*aOuterWidth = 0;
}
NS_RELEASE(parent);
return NS_OK;
}
@ -967,34 +950,16 @@ NS_IMETHODIMP
GlobalWindowImpl::GetOuterHeight(PRInt32* aOuterHeight)
{
nsIBrowserWindow *mBrowser;
nsIDOMWindow* parent = nsnull;
GetParent(&parent);
if (parent == this) {
// We are in a top level window. Use browser window's bounds.
if (NS_OK == GetBrowserWindowInterface(mBrowser)) {
nsRect r;
mBrowser->GetWindowBounds(r);
*aOuterHeight = r.height;
NS_RELEASE(mBrowser);
}
else {
*aOuterHeight = 0;
}
if (NS_OK == GetBrowserWindowInterface(mBrowser)) {
nsRect r;
mBrowser->GetWindowBounds(r);
*aOuterHeight = r.height;
NS_RELEASE(mBrowser);
}
else {
// We are in an (i)frame. Use webshell bounds.
if (mWebShell) {
PRInt32 x,y,w,h;
mWebShell->GetBounds(x, y, w, h);
*aOuterHeight = h;
}
else {
*aOuterHeight = 0;
}
*aOuterHeight = 0;
}
NS_RELEASE(parent);
return NS_OK;
}