mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(firefox): roll to r1447 (#30080)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
253a2f9a9c
commit
05cbb14d28
@ -15,13 +15,13 @@
|
||||
},
|
||||
{
|
||||
"name": "firefox",
|
||||
"revision": "1446",
|
||||
"revision": "1447",
|
||||
"installByDefault": true,
|
||||
"browserVersion": "124.0"
|
||||
},
|
||||
{
|
||||
"name": "firefox-asan",
|
||||
"revision": "1446",
|
||||
"revision": "1447",
|
||||
"installByDefault": false,
|
||||
"browserVersion": "124.0"
|
||||
},
|
||||
|
||||
@ -147,6 +147,11 @@ export module Protocol {
|
||||
enabled: boolean;
|
||||
};
|
||||
export type setRequestInterceptionReturnValue = void;
|
||||
export type setCacheDisabledParameters = {
|
||||
browserContextId?: string;
|
||||
cacheDisabled: boolean;
|
||||
};
|
||||
export type setCacheDisabledReturnValue = void;
|
||||
export type setGeolocationOverrideParameters = {
|
||||
browserContextId?: string;
|
||||
geolocation: {
|
||||
@ -1099,6 +1104,7 @@ export module Protocol {
|
||||
"Browser.setContextProxy": Browser.setContextProxyParameters;
|
||||
"Browser.setHTTPCredentials": Browser.setHTTPCredentialsParameters;
|
||||
"Browser.setRequestInterception": Browser.setRequestInterceptionParameters;
|
||||
"Browser.setCacheDisabled": Browser.setCacheDisabledParameters;
|
||||
"Browser.setGeolocationOverride": Browser.setGeolocationOverrideParameters;
|
||||
"Browser.setUserAgentOverride": Browser.setUserAgentOverrideParameters;
|
||||
"Browser.setPlatformOverride": Browser.setPlatformOverrideParameters;
|
||||
@ -1179,6 +1185,7 @@ export module Protocol {
|
||||
"Browser.setContextProxy": Browser.setContextProxyReturnValue;
|
||||
"Browser.setHTTPCredentials": Browser.setHTTPCredentialsReturnValue;
|
||||
"Browser.setRequestInterception": Browser.setRequestInterceptionReturnValue;
|
||||
"Browser.setCacheDisabled": Browser.setCacheDisabledReturnValue;
|
||||
"Browser.setGeolocationOverride": Browser.setGeolocationOverrideReturnValue;
|
||||
"Browser.setUserAgentOverride": Browser.setUserAgentOverrideReturnValue;
|
||||
"Browser.setPlatformOverride": Browser.setPlatformOverrideReturnValue;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user