I'm creating the analysis for a web application using AngularJS. The application needs to be 508 standards compliant.
I know that certain devices used for accessibility read the HTML directly and using alt and longDescr attributes in elements, they get the content of the website.
The problem I see is that if you see the page source (not the generated source), when using certain functionality in Angular like ng-view and ng-include the content of the templates inserted in the page will not show in the source code, only in the generated source.
My question is, is there a problem in compliance with 508 standards by dynamically inserting templates?
In general, how compliant are AngularJS's features with 508 standards?