Gaël Poupard
Gaël Poupard
See [Funkify's website](https://www.funkify.org/), some "simulators" might be reproduced within a11y.css' webxtension.
The webextension would allow us to select a color filter to simulate some visual impairments, using @LukyVJ's [AcceCSS mixin library](https://lukyvj.github.io/accecss/). I think that could be great tool. What's your opinion,...
Have a look at [trashy.css debug file](https://github.com/t7/trashy.css/blob/master/css/trashy.debug.css) to see if there's any selector that could be added to a11y.css :)
@matuzo came up with [the excellent a11y-tests.css](https://github.com/matuzo/a11y-tests.css/commits/master/README.md), which basically simulate some accessibility situations — just like [Atalan's french « L’accessibilité numérique, et si nous agissions ? » website](https://www.atalan.fr/agissons/fr/index.html) does. I...
By using a CSS-only keylogger thing, we could do something pretty fun: **monitor** a11y.css results for a defined page. Thsi trick has been unveiled as a security exploit doable with...
Would it be valuable to display counters (as done in a11y.css) for: * check alts: for each case; * `lang` + `hreflang`? Just questionning for now.
Doable with CSS: ```css img { visibility: hidden; } * { background-image: unset !important; } ``` But how would we activate this?
- [i18n](https://developer.mozilla.org/fr/docs/Mozilla/Add-ons/WebExtensions/Internationalization), - [insertCSS](https://developer.mozilla.org/fr/docs/Mozilla/Add-ons/WebExtensions/API/tabs/insertCSS) & [removeCSS](https://developer.mozilla.org/fr/docs/Mozilla/Add-ons/WebExtensions/API/tabs/removeCSS), - [detectLanguage](https://developer.mozilla.org/fr/docs/Mozilla/Add-ons/WebExtensions/API/tabs/detectLanguage)…
Being able to display ARIA landmarks and labels (for example) is very useful when auditing a site. That being said, it's moving to an inspector tool instead of a testing...