Fix bug 462025 - Venkman crashes in nsDocAccessible::HasFlag (regression). r=aaronlev

This commit is contained in:
Philipp Kewisch 2008-10-29 09:43:21 +01:00
Родитель 396039add3
Коммит d9a06e8869
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -510,6 +510,10 @@ NS_IMETHODIMP nsDocAccessible::GetAssociatedEditor(nsIEditor **aEditor)
nsCoreUtils::GetDOMElementFor(DOMDocument);
nsCOMPtr<nsIContent> content(do_QueryInterface(DOMElement));
// If this is not a HTML document, then content will be null.
if (!content)
return NS_OK;
if (!content->HasFlag(NODE_IS_EDITABLE))
return NS_OK;
}