Angular - Internationalization and Accessibility
Consider this Angular template:
If
<div [attr.aria-hidden]="isVisible ? 'false' : 'true'">Content</div>
If
isVisible is false, what is the value of aria-hidden in the rendered HTML?