feat: roll Firefox and Firefox Beta (#20878)

Fixes #20791
This commit is contained in:
Andrey Lushnikov 2023-02-13 15:21:05 -08:00 committed by GitHub
parent ec17a1ac75
commit 94b859f471
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View file

@ -21,13 +21,13 @@
},
{
"name": "firefox",
"revision": "1376",
"revision": "1377",
"installByDefault": true,
"browserVersion": "109.0"
},
{
"name": "firefox-beta",
"revision": "1378",
"revision": "1379",
"installByDefault": false,
"browserVersion": "110.0b7"
},

View file

@ -393,7 +393,7 @@ export class FFPage implements PageDelegate {
}
async reload(): Promise<void> {
await this._session.send('Page.reload', { frameId: this._page.mainFrame()._id });
await this._session.send('Page.reload');
}
async goBack(): Promise<boolean> {

View file

@ -563,7 +563,6 @@ export module Protocol {
success: boolean;
};
export type reloadParameters = {
frameId: string;
};
export type reloadReturnValue = void;
export type adoptNodeParameters = {