зеркало из https://github.com/mozilla/gecko-dev.git
Fix bug 462025 - Venkman crashes in nsDocAccessible::HasFlag (regression). r=aaronlev
This commit is contained in:
Родитель
396039add3
Коммит
d9a06e8869
|
@ -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;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче