Making sure the default scrolling behavior for a webshell in XUL is

OVERFLOW_HIDDEN always.  Scrolling behavior set on the box itself
can be used to enable scrolling.
This commit is contained in:
hyatt%netscape.com 1999-07-02 05:29:18 +00:00
Родитель 9b9522ae73
Коммит a14d2e671e
2 изменённых файлов: 2 добавлений и 22 удалений

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

@ -2926,7 +2926,6 @@ XULDocumentImpl::SetPopupElement(nsIDOMElement* anElement)
return NS_OK;
}
NS_IMETHODIMP
XULDocumentImpl::GetTooltipElement(nsIDOMElement** anElement)
{
@ -3967,16 +3966,7 @@ XULDocumentImpl::StartLayout(void)
nsCOMPtr<nsIWebShell> webShell;
webShell = do_QueryInterface(container);
if (webShell) {
nsCOMPtr<nsIStyleContext> styleContext;
if (NS_SUCCEEDED(cx->ResolveStyleContextFor(mRootContent, nsnull,
PR_FALSE,
getter_AddRefs(styleContext)))) {
const nsStyleDisplay* disp = (const nsStyleDisplay*)
styleContext->GetStyleData(eStyleStruct_Display);
webShell->SetScrolling(disp->mOverflow);
}
webShell->SetScrolling(NS_STYLE_OVERFLOW_HIDDEN);
}
}
}

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

@ -2926,7 +2926,6 @@ XULDocumentImpl::SetPopupElement(nsIDOMElement* anElement)
return NS_OK;
}
NS_IMETHODIMP
XULDocumentImpl::GetTooltipElement(nsIDOMElement** anElement)
{
@ -3967,16 +3966,7 @@ XULDocumentImpl::StartLayout(void)
nsCOMPtr<nsIWebShell> webShell;
webShell = do_QueryInterface(container);
if (webShell) {
nsCOMPtr<nsIStyleContext> styleContext;
if (NS_SUCCEEDED(cx->ResolveStyleContextFor(mRootContent, nsnull,
PR_FALSE,
getter_AddRefs(styleContext)))) {
const nsStyleDisplay* disp = (const nsStyleDisplay*)
styleContext->GetStyleData(eStyleStruct_Display);
webShell->SetScrolling(disp->mOverflow);
}
webShell->SetScrolling(NS_STYLE_OVERFLOW_HIDDEN);
}
}
}