Disallow CSS generated content except aria-label attribute content and empty strings.
Sources:
The following pattern is considered a violation:
.foo::before {
content: 'Price: $50';
}The following patterns are not considered violations:
.foo {
content: '';
}.foo {
content: attr(aria-label);
}