├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .pr-preview.json ├── LICENSE.md ├── Makefile ├── README.md ├── explainer.md ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── index.bs ├── package.json ├── sample_test.html └── w3c.json /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | node_modules 4 | npm-debug*.log* 5 | -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/README.md -------------------------------------------------------------------------------- /explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/explainer.md -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/favicon-96x96.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/index.bs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/package.json -------------------------------------------------------------------------------- /sample_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/sample_test.html -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-test-api/HEAD/w3c.json --------------------------------------------------------------------------------