DomLiteralsAttribute
This attribute is used to mark an enum as being just a collection of
constant string values (with the names being the strings).
using System;
namespace AngleSharp.Attributes
{
[AttributeUsage(AttributeTargets.Enum)]
public sealed class DomLiteralsAttribute : Attribute
{
}
}