feat(firefox): bump to 1259 (#6510)
This commit is contained in:
parent
84031d4a07
commit
ab55918979
|
|
@ -8,7 +8,7 @@
|
|||
},
|
||||
{
|
||||
"name": "firefox",
|
||||
"revision": "1258",
|
||||
"revision": "1259",
|
||||
"installByDefault": true
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -151,7 +151,7 @@ export class FFPage implements PageDelegate {
|
|||
|
||||
_onExecutionContextCreated(payload: Protocol.Runtime.executionContextCreatedPayload) {
|
||||
const {executionContextId, auxData} = payload;
|
||||
const frame = this._page._frameManager.frame(auxData ? auxData.frameId : null);
|
||||
const frame = this._page._frameManager.frame(auxData.frameId!);
|
||||
if (!frame)
|
||||
return;
|
||||
const delegate = new FFExecutionContext(this._session, executionContextId);
|
||||
|
|
|
|||
|
|
@ -205,6 +205,7 @@ export module Protocol {
|
|||
export type addScriptToEvaluateOnNewDocumentReturnValue = void;
|
||||
export type addBindingParameters = {
|
||||
browserContextId?: string;
|
||||
worldName?: string;
|
||||
name: string;
|
||||
script: string;
|
||||
};
|
||||
|
|
@ -456,6 +457,7 @@ export module Protocol {
|
|||
};
|
||||
export type setFileInputFilesReturnValue = void;
|
||||
export type addBindingParameters = {
|
||||
worldName?: string;
|
||||
name: string;
|
||||
script: string;
|
||||
};
|
||||
|
|
@ -699,7 +701,10 @@ export module Protocol {
|
|||
};
|
||||
export type executionContextCreatedPayload = {
|
||||
executionContextId: string;
|
||||
auxData: any;
|
||||
auxData: {
|
||||
frameId?: string;
|
||||
name?: string;
|
||||
};
|
||||
}
|
||||
export type executionContextDestroyedPayload = {
|
||||
executionContextId: string;
|
||||
|
|
|
|||
Loading…
Reference in a new issue