├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── demo └── index.html ├── explainer.md ├── karma.conf.js ├── package.json ├── rollup.config.js ├── security-privacy.md ├── src └── inert.js ├── test ├── .eslintrc ├── fixtures │ ├── aria-hidden.html │ ├── basic.html │ ├── interactives.html │ ├── nested.html │ └── tabindex.html └── specs │ ├── basic.spec.js │ ├── element.spec.js │ ├── helpers │ └── index.js │ ├── interactives.spec.js │ ├── nested.spec.js │ ├── reapply-aria-hidden.spec.js │ ├── reapply-tabindex.spec.js │ ├── shadow-dom-v0.spec.js │ └── shadow-dom-v1.spec.js └── w3c.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/**/*.js 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | dist 4 | .vscode 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/demo/index.html -------------------------------------------------------------------------------- /explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/explainer.md -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/rollup.config.js -------------------------------------------------------------------------------- /security-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/security-privacy.md -------------------------------------------------------------------------------- /src/inert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/src/inert.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/fixtures/aria-hidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/fixtures/aria-hidden.html -------------------------------------------------------------------------------- /test/fixtures/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/fixtures/basic.html -------------------------------------------------------------------------------- /test/fixtures/interactives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/fixtures/interactives.html -------------------------------------------------------------------------------- /test/fixtures/nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/fixtures/nested.html -------------------------------------------------------------------------------- /test/fixtures/tabindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/fixtures/tabindex.html -------------------------------------------------------------------------------- /test/specs/basic.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/specs/basic.spec.js -------------------------------------------------------------------------------- /test/specs/element.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/specs/element.spec.js -------------------------------------------------------------------------------- /test/specs/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/specs/helpers/index.js -------------------------------------------------------------------------------- /test/specs/interactives.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/specs/interactives.spec.js -------------------------------------------------------------------------------- /test/specs/nested.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/specs/nested.spec.js -------------------------------------------------------------------------------- /test/specs/reapply-aria-hidden.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/specs/reapply-aria-hidden.spec.js -------------------------------------------------------------------------------- /test/specs/reapply-tabindex.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/specs/reapply-tabindex.spec.js -------------------------------------------------------------------------------- /test/specs/shadow-dom-v0.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/specs/shadow-dom-v0.spec.js -------------------------------------------------------------------------------- /test/specs/shadow-dom-v1.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/test/specs/shadow-dom-v1.spec.js -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/inert/HEAD/w3c.json --------------------------------------------------------------------------------