feat(webkit): roll to r1761 (#20207)

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

View file

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

View file

@ -6245,10 +6245,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
* Same-Site policy of a cookie. * Same-Site policy of a cookie.
*/ */
export type CookieSameSitePolicy = "None"|"Lax"|"Strict"; export type CookieSameSitePolicy = "None"|"Lax"|"Strict";
/**
* Page reduced-motion media query override.
*/
export type ReducedMotion = "Reduce"|"NoPreference";
/** /**
* Page forced-colors media query override. * Page forced-colors media query override.
*/ */
@ -6933,14 +6929,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
} }
export type setEmulatedMediaReturnValue = { export type setEmulatedMediaReturnValue = {
} }
/**
* Forces the reduced-motion media query for the page.
*/
export type setForcedReducedMotionParameters = {
reducedMotion?: ReducedMotion;
}
export type setForcedReducedMotionReturnValue = {
}
/** /**
* Forces the forced-colors media query for the page. * Forces the forced-colors media query for the page.
*/ */
@ -9306,7 +9294,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Page.setShowRulers": Page.setShowRulersParameters; "Page.setShowRulers": Page.setShowRulersParameters;
"Page.setShowPaintRects": Page.setShowPaintRectsParameters; "Page.setShowPaintRects": Page.setShowPaintRectsParameters;
"Page.setEmulatedMedia": Page.setEmulatedMediaParameters; "Page.setEmulatedMedia": Page.setEmulatedMediaParameters;
"Page.setForcedReducedMotion": Page.setForcedReducedMotionParameters;
"Page.setForcedColors": Page.setForcedColorsParameters; "Page.setForcedColors": Page.setForcedColorsParameters;
"Page.setTimeZone": Page.setTimeZoneParameters; "Page.setTimeZone": Page.setTimeZoneParameters;
"Page.setTouchEmulationEnabled": Page.setTouchEmulationEnabledParameters; "Page.setTouchEmulationEnabled": Page.setTouchEmulationEnabledParameters;
@ -9615,7 +9602,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Page.setShowRulers": Page.setShowRulersReturnValue; "Page.setShowRulers": Page.setShowRulersReturnValue;
"Page.setShowPaintRects": Page.setShowPaintRectsReturnValue; "Page.setShowPaintRects": Page.setShowPaintRectsReturnValue;
"Page.setEmulatedMedia": Page.setEmulatedMediaReturnValue; "Page.setEmulatedMedia": Page.setEmulatedMediaReturnValue;
"Page.setForcedReducedMotion": Page.setForcedReducedMotionReturnValue;
"Page.setForcedColors": Page.setForcedColorsReturnValue; "Page.setForcedColors": Page.setForcedColorsReturnValue;
"Page.setTimeZone": Page.setTimeZoneReturnValue; "Page.setTimeZone": Page.setTimeZoneReturnValue;
"Page.setTouchEmulationEnabled": Page.setTouchEmulationEnabledReturnValue; "Page.setTouchEmulationEnabled": Page.setTouchEmulationEnabledReturnValue;