We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be45b67 commit 26b2772Copy full SHA for 26b2772
2 files changed
docs/rules/onclick-uses-role.md
@@ -33,4 +33,4 @@ function of an element.
33
34
## See also
35
36
- - [This document](http://www.w3.org/TR/wai-aria/roles#role_definitions) from w3.org
+ - [This document](https://www.w3.org/WAI/PF/aria/roles#role_definitions) from w3.org
src/rules/onclick-uses-role.js
@@ -9,7 +9,7 @@ import {
9
export default [{
10
msg: 'You have a click handler on a non-interactive element but no `role` DOM property. '
11
+ 'It will be unclear what this element is supposed to do to a screen-reader user.',
12
- url: 'http://www.w3.org/TR/wai-aria/roles#role_definitions',
+ url: 'https://www.w3.org/WAI/PF/aria/roles#role_definitions',
13
affects: [
14
devices.screenReaders
15
],
0 commit comments