Bug 1340747 - Try to initialize the remote browser when getting the frameloader's loadContext, r=ehsan

MozReview-Commit-ID: GhCNwG0uMGb
This commit is contained in:
Michael Layzell 2017-02-24 16:59:53 -05:00
Родитель bb9493301a
Коммит 06f83555f0
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -3485,7 +3485,8 @@ NS_IMETHODIMP
nsFrameLoader::GetLoadContext(nsILoadContext** aLoadContext)
{
nsCOMPtr<nsILoadContext> loadContext;
if (mRemoteBrowser) {
if (IsRemoteFrame() &&
(mRemoteBrowser || TryRemoteBrowser())) {
loadContext = mRemoteBrowser->GetLoadContext();
} else {
nsCOMPtr<nsIDocShell> docShell;