Load frame content using contentDocument.location.href instead of src attribute (#529)
This commit is contained in:
parent
9742d5662b
commit
c38cd70e91
@ -336,9 +336,9 @@ class Popup {
|
||||
const {secret, token} = await this._initializeFrame(this._frame, this._targetOrigin, this._frameId, (frame) => {
|
||||
frame.removeAttribute('src');
|
||||
frame.removeAttribute('srcdoc');
|
||||
frame.setAttribute('src', chrome.runtime.getURL('/fg/float.html'));
|
||||
this._observeFullscreen(true);
|
||||
this._onFullscreenChanged();
|
||||
frame.contentDocument.location.href = chrome.runtime.getURL('/fg/float.html');
|
||||
});
|
||||
this._frameSecret = secret;
|
||||
this._frameToken = token;
|
||||
|
Loading…
Reference in New Issue
Block a user