├── .eslintrc.js ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── accessibility.js ├── index.js ├── package.json └── www ├── index.html ├── renderer.js └── style.css /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/html-a11y-renderer/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/html-a11y-renderer/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/html-a11y-renderer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/html-a11y-renderer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/html-a11y-renderer/HEAD/README.md -------------------------------------------------------------------------------- /accessibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/html-a11y-renderer/HEAD/accessibility.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/html-a11y-renderer/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/html-a11y-renderer/HEAD/package.json -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/html-a11y-renderer/HEAD/www/index.html -------------------------------------------------------------------------------- /www/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/html-a11y-renderer/HEAD/www/renderer.js -------------------------------------------------------------------------------- /www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/html-a11y-renderer/HEAD/www/style.css --------------------------------------------------------------------------------