├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auto-publish-errata.yml │ ├── auto-publish.yml │ └── tidy.yml ├── .pr-preview.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── errata.html ├── index.html ├── reports └── implementation.html ├── spec-source.html ├── tidyconfig.txt └── w3c.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto-publish-errata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/.github/workflows/auto-publish-errata.yml -------------------------------------------------------------------------------- /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.github/workflows/tidy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/.github/workflows/tidy.yml -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/README.md -------------------------------------------------------------------------------- /errata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/errata.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/index.html -------------------------------------------------------------------------------- /reports/implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/reports/implementation.html -------------------------------------------------------------------------------- /spec-source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/spec-source.html -------------------------------------------------------------------------------- /tidyconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/tidyconfig.txt -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/geolocation/HEAD/w3c.json --------------------------------------------------------------------------------