feat(webkit): roll to r2151 (#35335)

Co-authored-by: microsoft-playwright-automation[bot] <4203992400+microsoft-playwright-automation[bot]@users.noreply.github.com>
This commit is contained in:
microsoft-playwright-automation[bot] 2025-03-25 15:44:23 +01:00 committed by GitHub
parent 24c74dbc5d
commit 95cbe85f7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 15 additions and 6 deletions

View File

@ -39,7 +39,7 @@
}, },
{ {
"name": "webkit", "name": "webkit",
"revision": "2150", "revision": "2151",
"installByDefault": true, "installByDefault": true,
"revisionOverrides": { "revisionOverrides": {
"debian11-x64": "2105", "debian11-x64": "2105",

View File

@ -26,7 +26,6 @@ export module Protocol {
* Equal to the corresponding `transition-property` CSS property. Should not be provided if `animationName` is also provided. * Equal to the corresponding `transition-property` CSS property. Should not be provided if `animationName` is also provided.
*/ */
cssTransitionProperty?: string; cssTransitionProperty?: string;
effect?: Effect;
/** /**
* Backtrace that was captured when this `WebAnimation` was created. * Backtrace that was captured when this `WebAnimation` was created.
*/ */
@ -104,10 +103,6 @@ export module Protocol {
*/ */
export type effectChangedPayload = { export type effectChangedPayload = {
animationId: AnimationId; animationId: AnimationId;
/**
* This is omitted when the effect is removed without a replacement.
*/
effect?: Effect;
} }
/** /**
* Dispatched whenever the target of any effect of any animation is changed in any way. * Dispatched whenever the target of any effect of any animation is changed in any way.
@ -155,6 +150,18 @@ export module Protocol {
} }
export type disableReturnValue = { export type disableReturnValue = {
} }
/**
* Gets the `Effect` for the animation with the given `AnimationId`.
*/
export type requestEffectParameters = {
animationId: AnimationId;
}
export type requestEffectReturnValue = {
/**
* This is omitted when there is no effect.
*/
effect?: Effect;
}
/** /**
* Gets the `DOM.NodeId` for the target of the effect of the animation with the given `AnimationId`. * Gets the `DOM.NodeId` for the target of the effect of the animation with the given `AnimationId`.
*/ */
@ -9179,6 +9186,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
export interface CommandParameters { export interface CommandParameters {
"Animation.enable": Animation.enableParameters; "Animation.enable": Animation.enableParameters;
"Animation.disable": Animation.disableParameters; "Animation.disable": Animation.disableParameters;
"Animation.requestEffect": Animation.requestEffectParameters;
"Animation.requestEffectTarget": Animation.requestEffectTargetParameters; "Animation.requestEffectTarget": Animation.requestEffectTargetParameters;
"Animation.resolveAnimation": Animation.resolveAnimationParameters; "Animation.resolveAnimation": Animation.resolveAnimationParameters;
"Animation.startTracking": Animation.startTrackingParameters; "Animation.startTracking": Animation.startTrackingParameters;
@ -9483,6 +9491,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
export interface CommandReturnValues { export interface CommandReturnValues {
"Animation.enable": Animation.enableReturnValue; "Animation.enable": Animation.enableReturnValue;
"Animation.disable": Animation.disableReturnValue; "Animation.disable": Animation.disableReturnValue;
"Animation.requestEffect": Animation.requestEffectReturnValue;
"Animation.requestEffectTarget": Animation.requestEffectTargetReturnValue; "Animation.requestEffectTarget": Animation.requestEffectTargetReturnValue;
"Animation.resolveAnimation": Animation.resolveAnimationReturnValue; "Animation.resolveAnimation": Animation.resolveAnimationReturnValue;
"Animation.startTracking": Animation.startTrackingReturnValue; "Animation.startTracking": Animation.startTrackingReturnValue;