зеркало из https://github.com/mozilla/pjs.git
Bug 588337. When looking for a container view try a little harder to find the parent document's presshell. r=roc
This commit is contained in:
Родитель
d6d204cff7
Коммит
19f7b374c5
|
@ -2408,6 +2408,12 @@ DocumentViewerImpl::FindContainerView()
|
|||
parentDocShell->GetPresShell(getter_AddRefs(parentPresShell));
|
||||
}
|
||||
}
|
||||
if (!parentPresShell && containerElement) {
|
||||
nsCOMPtr<nsIDocument> parentDoc = containerElement->GetCurrentDoc();
|
||||
if (parentDoc) {
|
||||
parentPresShell = parentDoc->GetShell();
|
||||
}
|
||||
}
|
||||
if (!containerElement) {
|
||||
NS_WARNING("Subdocument container has no content");
|
||||
} else if (!parentPresShell) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче