babelacc

compare different implementations of the text alternative computation  https://p.ce9e.org/babelacc/
git clone https://git.ce9e.org/babelacc.git

commit
39043a25a10530c379805d5a71fdd07107b75b74
parent
21cf7dc429b0b871507da1f336fcad8afed68a15
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-07-15 05:40
update tools

Diffstat

M package.json 6 +++---
M src/babel.js 8 ++++----

2 files changed, 7 insertions, 7 deletions


diff --git a/package.json b/package.json

@@ -4,9 +4,9 @@
    4     4   "description": "compare different implementations of accname",
    5     5   "devDependencies": {
    6     6     "accessibility-developer-tools": "2.12.0",
    7    -1     "aria-api": "0.4.1",
    8    -1     "axe-core": "4.2.3",
    9    -1     "dom-accessibility-api": "0.5.6",
   -1     7     "aria-api": "0.4.2",
   -1     8     "axe-core": "4.4.3",
   -1     9     "dom-accessibility-api": "0.5.14",
   10    10     "nyc": "^15.1.0",
   11    11     "w3c-alternative-text-computation": "github:accdc/w3c-alternative-text-computation"
   12    12   },

diff --git a/src/babel.js b/src/babel.js

@@ -17,7 +17,7 @@ var ex = function(fn, args, _this) {
   17    17 };
   18    18 
   19    19 var implementations = [{
   20    -1 	name: 'aria-api (0.4.1)',
   -1    20 	name: 'aria-api (0.4.2)',
   21    21 	url: 'https://github.com/xi/aria-api',
   22    22 	fn: function(el) {
   23    23 		return {
@@ -27,11 +27,11 @@ var implementations = [{
   27    27 		};
   28    28 	},
   29    29 }, {
   30    -1 	name: 'accdc (2.55)',
   -1    30 	name: 'accdc (2.59)',
   31    31 	url: 'https://github.com/accdc/w3c-alternative-text-computation',
   32    32 	fn: accdc.calcNames,
   33    33 }, {
   34    -1 	name: 'dom-accessibility-api (0.5.6)',
   -1    34 	name: 'dom-accessibility-api (0.5.14)',
   35    35 	url: 'https://github.com/eps1lon/dom-accessibility-api/',
   36    36 	fn: function(el) {
   37    37 		return {
@@ -41,7 +41,7 @@ var implementations = [{
   41    41 		};
   42    42 	},
   43    43 }, {
   44    -1 	name: 'axe (4.2.3)',
   -1    44 	name: 'axe (4.4.3)',
   45    45 	url: 'https://github.com/dequelabs/axe-core',
   46    46 	fn: function(el) {
   47    47 		axe._tree = axe.utils.getFlattenedTree(document.body);