axe-core 4.4.3-canary.b5ceabc → 4.4.3-canary.b8a6a07
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -4
- package/axe.js +3651 -2777
- package/axe.min.js +2 -2
- package/locales/_template.json +36 -8
- package/package.json +14 -12
- package/sri-history.json +3 -3
package/README.md
CHANGED
|
@@ -78,9 +78,9 @@ The [axe-core API](doc/API.md) fully supports the following browsers:
|
|
|
78
78
|
- Google Chrome v42 and above
|
|
79
79
|
- Mozilla Firefox v38 and above
|
|
80
80
|
- Apple Safari v7 and above
|
|
81
|
-
- Internet Explorer v11
|
|
81
|
+
- Internet Explorer v11 (DEPRECATED)
|
|
82
82
|
|
|
83
|
-
Support means that we will fix bugs and attempt to test each browser regularly. Only
|
|
83
|
+
Support means that we will fix bugs and attempt to test each browser regularly. Only Chrome and Firefox are currently tested on every pull request.
|
|
84
84
|
|
|
85
85
|
There is limited support for JSDOM. We will attempt to make all rules compatible with JSDOM but where this is not possible, we recommend turning those rules off. Currently the `color-contrast` rule is known not to work with JSDOM.
|
|
86
86
|
|
|
@@ -127,8 +127,7 @@ axe.configure({
|
|
|
127
127
|
},
|
|
128
128
|
'aria-errormessage': {
|
|
129
129
|
// Note: doT (https://github.com/olado/dot) templates are supported here.
|
|
130
|
-
fail:
|
|
131
|
-
'Der Wert der aria-errormessage ${data.values}` muss eine Technik verwenden, um die Message anzukündigen (z. B., aria-live, aria-describedby, role=alert, etc.).'
|
|
130
|
+
fail: 'Der Wert der aria-errormessage ${data.values}` muss eine Technik verwenden, um die Message anzukündigen (z. B., aria-live, aria-describedby, role=alert, etc.).'
|
|
132
131
|
}
|
|
133
132
|
// ...
|
|
134
133
|
}
|