feat(webkit): roll to r1805 (#21349)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Playwright Service 2023-03-02 13:07:05 -08:00 committed by GitHub
parent e1e69cbbcc
commit 0ce5651975
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 10 deletions

View file

@ -33,7 +33,7 @@
}, },
{ {
"name": "webkit", "name": "webkit",
"revision": "1803", "revision": "1805",
"installByDefault": true, "installByDefault": true,
"revisionOverrides": { "revisionOverrides": {
"mac10.14": "1446", "mac10.14": "1446",

View file

@ -7011,13 +7011,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
} }
export type setTimeZoneReturnValue = { export type setTimeZoneReturnValue = {
} }
/**
* Clears browser memory cache.
*/
export type clearMemoryCacheParameters = {
}
export type clearMemoryCacheReturnValue = {
}
/** /**
* Enables touch events on platforms that lack them. * Enables touch events on platforms that lack them.
*/ */
@ -7625,6 +7618,17 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
} }
export type cancelDownloadReturnValue = { export type cancelDownloadReturnValue = {
} }
/**
* Clears browser memory cache.
*/
export type clearMemoryCacheParameters = {
/**
* Browser context id.
*/
browserContextId: ContextID;
}
export type clearMemoryCacheReturnValue = {
}
} }
/** /**
@ -9369,7 +9373,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Page.setEmulatedMedia": Page.setEmulatedMediaParameters; "Page.setEmulatedMedia": Page.setEmulatedMediaParameters;
"Page.setForcedColors": Page.setForcedColorsParameters; "Page.setForcedColors": Page.setForcedColorsParameters;
"Page.setTimeZone": Page.setTimeZoneParameters; "Page.setTimeZone": Page.setTimeZoneParameters;
"Page.clearMemoryCache": Page.clearMemoryCacheParameters;
"Page.setTouchEmulationEnabled": Page.setTouchEmulationEnabledParameters; "Page.setTouchEmulationEnabled": Page.setTouchEmulationEnabledParameters;
"Page.snapshotNode": Page.snapshotNodeParameters; "Page.snapshotNode": Page.snapshotNodeParameters;
"Page.snapshotRect": Page.snapshotRectParameters; "Page.snapshotRect": Page.snapshotRectParameters;
@ -9402,6 +9405,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Playwright.setLanguages": Playwright.setLanguagesParameters; "Playwright.setLanguages": Playwright.setLanguagesParameters;
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorParameters; "Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorParameters;
"Playwright.cancelDownload": Playwright.cancelDownloadParameters; "Playwright.cancelDownload": Playwright.cancelDownloadParameters;
"Playwright.clearMemoryCache": Playwright.clearMemoryCacheParameters;
"Runtime.parse": Runtime.parseParameters; "Runtime.parse": Runtime.parseParameters;
"Runtime.evaluate": Runtime.evaluateParameters; "Runtime.evaluate": Runtime.evaluateParameters;
"Runtime.awaitPromise": Runtime.awaitPromiseParameters; "Runtime.awaitPromise": Runtime.awaitPromiseParameters;
@ -9678,7 +9682,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Page.setEmulatedMedia": Page.setEmulatedMediaReturnValue; "Page.setEmulatedMedia": Page.setEmulatedMediaReturnValue;
"Page.setForcedColors": Page.setForcedColorsReturnValue; "Page.setForcedColors": Page.setForcedColorsReturnValue;
"Page.setTimeZone": Page.setTimeZoneReturnValue; "Page.setTimeZone": Page.setTimeZoneReturnValue;
"Page.clearMemoryCache": Page.clearMemoryCacheReturnValue;
"Page.setTouchEmulationEnabled": Page.setTouchEmulationEnabledReturnValue; "Page.setTouchEmulationEnabled": Page.setTouchEmulationEnabledReturnValue;
"Page.snapshotNode": Page.snapshotNodeReturnValue; "Page.snapshotNode": Page.snapshotNodeReturnValue;
"Page.snapshotRect": Page.snapshotRectReturnValue; "Page.snapshotRect": Page.snapshotRectReturnValue;
@ -9711,6 +9714,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Playwright.setLanguages": Playwright.setLanguagesReturnValue; "Playwright.setLanguages": Playwright.setLanguagesReturnValue;
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorReturnValue; "Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorReturnValue;
"Playwright.cancelDownload": Playwright.cancelDownloadReturnValue; "Playwright.cancelDownload": Playwright.cancelDownloadReturnValue;
"Playwright.clearMemoryCache": Playwright.clearMemoryCacheReturnValue;
"Runtime.parse": Runtime.parseReturnValue; "Runtime.parse": Runtime.parseReturnValue;
"Runtime.evaluate": Runtime.evaluateReturnValue; "Runtime.evaluate": Runtime.evaluateReturnValue;
"Runtime.awaitPromise": Runtime.awaitPromiseReturnValue; "Runtime.awaitPromise": Runtime.awaitPromiseReturnValue;