The potentially harmful content modal included on the homepage does not have an accessible name
page: https://dlg.usg.edu
link to row on spreadsheet
recommendation: Page components with certain roles need to have accessible names so they can be identified by a screen reader. When using role="dialog" a naming scheme should be applied to the element so it is properly identified. Refer to this Mozilla Developer Network article for more information about role="dialog", "ARIA dialog and alertdialog nodes should have an accessible name" - https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/dialog_role Recommend using the heading in the modal to establish an accessible name for the component. Suggest: <div class="modal fade harmful-content-modal" tabindex="-1" role="dialog" arialabelledby="modalTitle"> <h2 id="modalTitle" class="modal-title">Potentially Harmful Content</h2> //Notice the heading has been changed to an h2. Since this is the only available content while the modal is open the heading should be a sectional heading. "..." </div>