Actions
Bug #104901
openLinks with missing href are not focusable by keyboard
Status:
Under Review
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2024-09-11
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
12
PHP Version:
Tags:
accessibility
Complexity:
Is Regression:
Sprint Focus:
Description
A link with a missing href
-tag is not focusable by keyboard:
<a class="btn btn-primary" data-dispatch-action="…">{LABEL}</a>
Use button
-markup instead:
<button type="button" class="btn btn-primary" data-dispatch-action="…">{LABEL}</button>
The use of href="#"
to make the link focusable is discouraged.
Actions