feat(webkit): roll to r1706 (#16659)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Playwright Service 2022-08-18 22:42:58 -07:00 committed by GitHub
parent f99f0c099f
commit 5282edca7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View file

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

View file

@ -6156,6 +6156,10 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
* Page reduced-motion media query override. * Page reduced-motion media query override.
*/ */
export type ReducedMotion = "Reduce"|"NoPreference"; export type ReducedMotion = "Reduce"|"NoPreference";
/**
* Page forced-colors media query override.
*/
export type ForcedColors = "Active"|"None";
/** /**
* Information about the Frame on the page. * Information about the Frame on the page.
*/ */
@ -6840,6 +6844,14 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
} }
export type setForcedReducedMotionReturnValue = { export type setForcedReducedMotionReturnValue = {
} }
/**
* Forces the forced-colors media query for the page.
*/
export type setForcedColorsParameters = {
forcedColors?: ForcedColors;
}
export type setForcedColorsReturnValue = {
}
/** /**
* Enables time zone emulation. * Enables time zone emulation.
*/ */
@ -9196,6 +9208,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.setForcedAppearance": Page.setForcedAppearanceParameters; "Page.setForcedAppearance": Page.setForcedAppearanceParameters;
"Page.setForcedReducedMotion": Page.setForcedReducedMotionParameters; "Page.setForcedReducedMotion": Page.setForcedReducedMotionParameters;
"Page.setForcedColors": Page.setForcedColorsParameters;
"Page.setTimeZone": Page.setTimeZoneParameters; "Page.setTimeZone": Page.setTimeZoneParameters;
"Page.setTouchEmulationEnabled": Page.setTouchEmulationEnabledParameters; "Page.setTouchEmulationEnabled": Page.setTouchEmulationEnabledParameters;
"Page.snapshotNode": Page.snapshotNodeParameters; "Page.snapshotNode": Page.snapshotNodeParameters;
@ -9502,6 +9515,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.setForcedAppearance": Page.setForcedAppearanceReturnValue; "Page.setForcedAppearance": Page.setForcedAppearanceReturnValue;
"Page.setForcedReducedMotion": Page.setForcedReducedMotionReturnValue; "Page.setForcedReducedMotion": Page.setForcedReducedMotionReturnValue;
"Page.setForcedColors": Page.setForcedColorsReturnValue;
"Page.setTimeZone": Page.setTimeZoneReturnValue; "Page.setTimeZone": Page.setTimeZoneReturnValue;
"Page.setTouchEmulationEnabled": Page.setTouchEmulationEnabledReturnValue; "Page.setTouchEmulationEnabled": Page.setTouchEmulationEnabledReturnValue;
"Page.snapshotNode": Page.snapshotNodeReturnValue; "Page.snapshotNode": Page.snapshotNodeReturnValue;