35 lines
912 B
Markdown
35 lines
912 B
Markdown
---
|
|
title: Ellipsis in pager template fails accessibility tests
|
|
date: '2024-08-21 12:00:00'
|
|
tags:
|
|
- Drupal
|
|
- Accessibility
|
|
- ARIA
|
|
- Software Development
|
|
- Web Development
|
|
---
|
|
|
|
```html
|
|
<ul> and <ol> must only directly contain <li>, <script> or <template> elements
|
|
Ensures that lists are structured correctly
|
|
|
|
more informationLink opens in a new window
|
|
Element Location:
|
|
.pager__items
|
|
<ul class="pager__items js-pager__items">
|
|
To solve this problem, you need to fix the following:
|
|
List element has direct children that are not allowed: [role=presentation]
|
|
|
|
Related Node
|
|
<li class="pager__item pager__item--ellipsis" role="presentation">…</li>
|
|
```
|
|
|
|
Proposed resolution:
|
|
|
|
Replace `role="presentation"` with `aria-label="additional pages"`.
|
|
|
|
## Links
|
|
|
|
* <https://www.drupal.org/project/drupal/issues/3348552> (issue, currently "needs work").
|
|
* <https://www.drupal.org/node/3399874> (draft change record).
|