feat(webkit): roll to r1802 (#21201)

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

View File

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

View File

@ -7011,6 +7011,13 @@ 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.
*/ */
@ -9362,6 +9369,7 @@ 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;
@ -9670,6 +9678,7 @@ 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;