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