axe 8.1.0 → 8.1.1
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 +7 -3
- package/dist/axe.js +3174 -1526
- package/dist/axe.min.js +1 -1
- package/lib/index.js +8 -8
- package/package.json +29 -25
package/README.md
CHANGED
|
@@ -165,7 +165,7 @@ axe.info('hello world');
|
|
|
165
165
|
**The browser-ready bundle is only 36 KB (minified and gzipped)**.
|
|
166
166
|
|
|
167
167
|
```html
|
|
168
|
-
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6,Map,Map.prototype,Math.sign,Promise,Reflect,Symbol,Symbol.iterator,Symbol.prototype,Symbol.toPrimitive,Symbol.toStringTag,Uint32Array,window.crypto,Object.assign,Object.getOwnPropertySymbols,Array.from,Set"></script>
|
|
168
|
+
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6,Map,Map.prototype,Math.sign,Promise,Reflect,Symbol,Symbol.iterator,Symbol.prototype,Symbol.toPrimitive,Symbol.toStringTag,Uint32Array,window.crypto,Object.assign,Object.getOwnPropertySymbols,Array.from,Set,BigInt,WeakMap,WeakRef,WeakSet"></script>
|
|
169
169
|
<script src="https://unpkg.com/axe"></script>
|
|
170
170
|
<script type="text/javascript">
|
|
171
171
|
(function() {
|
|
@@ -180,7 +180,7 @@ axe.info('hello world');
|
|
|
180
180
|
We recommend using <https://polyfill.io> (specifically with the bundle mentioned in [VanillaJS](#vanillajs) above):
|
|
181
181
|
|
|
182
182
|
```html
|
|
183
|
-
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6,Map,Map.prototype,Math.sign,Promise,Reflect,Symbol,Symbol.iterator,Symbol.prototype,Symbol.toPrimitive,Symbol.toStringTag,Uint32Array,window.crypto,Object.assign,Object.getOwnPropertySymbols,Array.from,Set"></script>
|
|
183
|
+
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6,Map,Map.prototype,Math.sign,Promise,Reflect,Symbol,Symbol.iterator,Symbol.prototype,Symbol.toPrimitive,Symbol.toStringTag,Uint32Array,window.crypto,Object.assign,Object.getOwnPropertySymbols,Array.from,Set,BigInt,WeakMap,WeakRef,WeakSet"></script>
|
|
184
184
|
```
|
|
185
185
|
|
|
186
186
|
* Map is not supported in IE 10
|
|
@@ -188,7 +188,6 @@ We recommend using <https://polyfill.io> (specifically with the bundle mentioned
|
|
|
188
188
|
* Math.sign() is not supported in IE 10
|
|
189
189
|
* Promise is not supported in Opera Mobile 12.1, Opera Mini all, IE Mobile 10, IE 10, Blackberry Browser 7
|
|
190
190
|
* Reflect is not supported in IE 10
|
|
191
|
-
* Symbol is not supported in IE 10
|
|
192
191
|
* Symbol.iterator() is not supported in IE 10
|
|
193
192
|
* Symbol.prototype() is not supported in IE 10
|
|
194
193
|
* Symbol.toPrimitive() is not supported in IE 10
|
|
@@ -199,6 +198,11 @@ We recommend using <https://polyfill.io> (specifically with the bundle mentioned
|
|
|
199
198
|
* Object.getOwnPropertySymbols() is not supported in IE 10
|
|
200
199
|
* Array.from() is not supported in IE 10
|
|
201
200
|
* Set is not supported in IE 10
|
|
201
|
+
* Symbol is not supported in IE 10
|
|
202
|
+
* BigInt is not supported in IE 10
|
|
203
|
+
* WeakMap is not supported in IE 10
|
|
204
|
+
* WeakRef is not supported in Opera 81, IE 10
|
|
205
|
+
* WeakSet is not supported in IE 10
|
|
202
206
|
|
|
203
207
|
#### Bundler
|
|
204
208
|
|