Table of Contents

Class GetAnimatedStylesForNodeResult

Namespace
Selenium.WebDriver.BiDi.Cdp.CSS
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
public sealed record GetAnimatedStylesForNodeResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetAnimatedStylesForNodeResult>
Inheritance
EmptyResult
GetAnimatedStylesForNodeResult
Implements
IEquatable<EmptyResult>
Inherited Members
EmptyResult.ToString()
EmptyResult.GetHashCode()
EmptyResult.Equals(EmptyResult)
EmptyResult.<Clone>$()
EmptyResult.AdditionalData
EmptyResult.AdditionalMessageData

Constructors

GetAnimatedStylesForNodeResult(ImmutableArray<CSSAnimationStyle>?, CSSStyle?, ImmutableArray<InheritedAnimatedStyleEntry>?)

public GetAnimatedStylesForNodeResult(ImmutableArray<CSSAnimationStyle>? AnimationStyles, CSSStyle? TransitionsStyle, ImmutableArray<InheritedAnimatedStyleEntry>? Inherited)

Parameters

AnimationStyles ImmutableArray<CSSAnimationStyle>?

Styles coming from animations.

TransitionsStyle CSSStyle

Style coming from transitions.

Inherited ImmutableArray<InheritedAnimatedStyleEntry>?

Inherited style entries for animationsStyle and transitionsStyle from the inheritance chain of the element.

Properties

AnimationStyles

Styles coming from animations.

public ImmutableArray<CSSAnimationStyle>? AnimationStyles { get; init; }

Property Value

ImmutableArray<CSSAnimationStyle>?

Inherited

Inherited style entries for animationsStyle and transitionsStyle from the inheritance chain of the element.

public ImmutableArray<InheritedAnimatedStyleEntry>? Inherited { get; init; }

Property Value

ImmutableArray<InheritedAnimatedStyleEntry>?

TransitionsStyle

Style coming from transitions.

public CSSStyle? TransitionsStyle { get; init; }

Property Value

CSSStyle