diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-09 22:56:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-09 22:56:04 -0500 |
commit | 166451b8f76224542b49c13cb27a258eb291f05e (patch) | |
tree | 071438b28a04b0478586272038ea343ad4cad319 /ext/fg/js/popup.js | |
parent | 0f5fb804d03041b58813516721d897c4315dca8b (diff) |
Improve popup window ownership (#1364)
* Update frameInformationGet to also return the tab ID
* Add tabId to Frontend
* Pass tabId/frameId to Display
* Pass ownership information using setContent
* Remove ownerFrameId for Popup classes
* Use frameId instead of ownerFrameId for screenshotting
* Use contentOrigin instead of owner
* Update _invokeContentOrigin implementation
Diffstat (limited to 'ext/fg/js/popup.js')
-rw-r--r-- | ext/fg/js/popup.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 5c2e57e9..47330090 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -27,14 +27,12 @@ class Popup extends EventDispatcher { id, depth, frameId, - ownerFrameId, childrenSupported }) { super(); this._id = id; this._depth = depth; this._frameId = frameId; - this._ownerFrameId = ownerFrameId; this._childrenSupported = childrenSupported; this._parent = null; this._child = null; @@ -275,7 +273,6 @@ class Popup extends EventDispatcher { depth: this._depth, parentPopupId: this._id, parentFrameId: this._frameId, - ownerFrameId: this._ownerFrameId, childrenSupported: this._childrenSupported, scale: this._contentScale, optionsContext: this._optionsContext |