feat(firefox): roll to r1384 (#21271)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Playwright Service 2023-03-01 01:25:43 -08:00 committed by GitHub
parent c7df9e6bcb
commit d12d35f124
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -21,7 +21,7 @@
},
{
"name": "firefox",
"revision": "1383",
"revision": "1384",
"installByDefault": true,
"browserVersion": "109.0"
},

View file

@ -104,8 +104,8 @@ export module Protocol {
}[];
};
export type setExtraHTTPHeadersReturnValue = void;
export type clearNetworkCacheParameters = void;
export type clearNetworkCacheReturnValue = void;
export type clearCacheParameters = void;
export type clearCacheReturnValue = void;
export type setBrowserProxyParameters = {
type: ("http"|"https"|"socks"|"socks4");
bypass: string[];
@ -1085,7 +1085,7 @@ export module Protocol {
"Browser.close": Browser.closeParameters;
"Browser.getInfo": Browser.getInfoParameters;
"Browser.setExtraHTTPHeaders": Browser.setExtraHTTPHeadersParameters;
"Browser.clearNetworkCache": Browser.clearNetworkCacheParameters;
"Browser.clearCache": Browser.clearCacheParameters;
"Browser.setBrowserProxy": Browser.setBrowserProxyParameters;
"Browser.setContextProxy": Browser.setContextProxyParameters;
"Browser.setHTTPCredentials": Browser.setHTTPCredentialsParameters;
@ -1165,7 +1165,7 @@ export module Protocol {
"Browser.close": Browser.closeReturnValue;
"Browser.getInfo": Browser.getInfoReturnValue;
"Browser.setExtraHTTPHeaders": Browser.setExtraHTTPHeadersReturnValue;
"Browser.clearNetworkCache": Browser.clearNetworkCacheReturnValue;
"Browser.clearCache": Browser.clearCacheReturnValue;
"Browser.setBrowserProxy": Browser.setBrowserProxyReturnValue;
"Browser.setContextProxy": Browser.setContextProxyReturnValue;
"Browser.setHTTPCredentials": Browser.setHTTPCredentialsReturnValue;