AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.2" />

.NET API 1,168,384 bytes

 CssAnimationNameProperty

More information available at: https://developer.mozilla.org/en-US/docs/CSS/animation-name Gets the names of the animations to trigger.
using AngleSharp.Css; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssAnimationNameProperty : CssProperty { internal static readonly IValueConverter<string[]> Converter = Converters.Assign(Keywords.None, new string[0]).Or(Converters.IdentifierConverter.FromList()); internal CssAnimationNameProperty(CssStyleDeclaration rule) : base(PropertyNames.AnimationName, rule, PropertyFlags.None) { } protected override object GetDefault(IElement element) { return string.Empty; } protected override object Compute(IElement element) { return Converter.Convert(base.Value); } protected override bool IsValid(ICssValue value) { return Converter.Validate(value); } } }