├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── demo.html ├── global.d.ts ├── package.json ├── shadow.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/shadow-selection-polyfill/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/shadow-selection-polyfill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/shadow-selection-polyfill/HEAD/README.md -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/shadow-selection-polyfill/HEAD/demo.html -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/shadow-selection-polyfill/HEAD/global.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/shadow-selection-polyfill/HEAD/package.json -------------------------------------------------------------------------------- /shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/shadow-selection-polyfill/HEAD/shadow.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/shadow-selection-polyfill/HEAD/tsconfig.json --------------------------------------------------------------------------------