├── .github └── workflows │ └── auto-publish.yml ├── .gitignore ├── .pr-preview.json ├── .prettierrc.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Questionnaire.md ├── README.md ├── demo ├── index.html ├── left.html └── right.html ├── index.html ├── region-capture.js └── w3c.json /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Questionnaire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/Questionnaire.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/demo/left.html -------------------------------------------------------------------------------- /demo/right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/demo/right.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/index.html -------------------------------------------------------------------------------- /region-capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/region-capture.js -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-region/HEAD/w3c.json --------------------------------------------------------------------------------