зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1328829 Part 1: Don't copy related browser when switching between different remote types. r=mrbkap
This commit is contained in:
Родитель
862d5504b4
Коммит
76579c1821
|
@ -1706,8 +1706,9 @@
|
|||
}
|
||||
|
||||
// Abort if we're not going to change anything
|
||||
let currentRemoteType = aBrowser.getAttribute("remoteType");
|
||||
if (isRemote == aShouldBeRemote && !aOptions.newFrameloader && !aOptions.freshProcess &&
|
||||
(!isRemote || aBrowser.getAttribute("remoteType") == aOptions.remoteType) &&
|
||||
(!isRemote || currentRemoteType == aOptions.remoteType) &&
|
||||
!aBrowser.frameLoader.isFreshProcess) {
|
||||
return false;
|
||||
}
|
||||
|
@ -1754,8 +1755,12 @@
|
|||
}
|
||||
|
||||
// NB: This works with the hack in the browser constructor that
|
||||
// turns this normal property into a field.
|
||||
aBrowser.relatedBrowser = relatedBrowser;
|
||||
// turns this normal property into a field. When switching remote
|
||||
// type copying related browser would stop the switch and the
|
||||
// previously related browser will no longer be relevant.
|
||||
if (!aShouldBeRemote || currentRemoteType == aOptions.remoteType) {
|
||||
aBrowser.relatedBrowser = relatedBrowser;
|
||||
}
|
||||
|
||||
if (aOptions.opener) {
|
||||
// Set the opener window on the browser, such that when the frame
|
||||
|
|
Загрузка…
Ссылка в новой задаче