Bug 302193. Tabbing gets stuck for print preview when webpage focuses an element in onload, or if user clicks in textfield with mouse. r=mats, sr=neil, a=bsmedberg

This commit is contained in:
aaronleventhal%moonset.net 2005-08-02 13:44:55 +00:00
Родитель d1f2d73a22
Коммит 234820548e
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -4289,6 +4289,12 @@ nsEventStateManager::GetFocusedContent(nsIContent** aContent)
NS_IMETHODIMP
nsEventStateManager::SetFocusedContent(nsIContent* aContent)
{
if (aContent &&
(!mPresContext || mPresContext->Type() == nsPresContext::eContext_PrintPreview)) {
return NS_OK;
}
mCurrentFocus = aContent;
if (mCurrentFocus)
mLastFocus = mCurrentFocus;