├── .gitignore ├── LICENSE.md ├── README.md ├── index.html └── webvr.html /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | All Reports in this Repository are licensed by Contributors 2 | under the 3 | [W3C Software and Document License](http://www.w3.org/Consortium/Legal/2015/copyright-software-and-document). 4 | 5 | Contributions to Specifications are made under the 6 | [W3C CLA](https://www.w3.org/community/about/agreements/cla/). 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WebVR Specification has moved 2 | 3 | > **Note:** This `webvr-spec` repository has merged into the __[W3C's `webvr` repository](https://github.com/w3c/webvr/)__. All [commits](https://github.com/w3c/webvr/commits/) and [issues](https://github.com/w3c/webvr/issues) have also been moved over. 4 | 5 |
6 | 7 | 8 | WebVR Specification 9 | =================== 10 | 11 | This repository houses the [WebVR specification](https://mozvr.github.io/webvr-spec/), in [Bikeshed](https://github.com/tabatkins/bikeshed) format. 12 | 13 | To generate the `index.html` document from the `index.bs` Bikeshed file, simply run `make`. 14 | 15 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Redirecting… | WebVR Spec has moved! 5 | 6 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /webvr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | WebVR 5 | 6 | 13 | 14 | 15 | 16 | 17 | --------------------------------------------------------------------------------