├── .github └── workflows │ └── auto-publish.yml ├── .gitignore ├── CONTRIBUTING.md ├── FPWD.html ├── LICENSE.md ├── README.md ├── index.bs └── w3c.json /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webappsec-fetch-metadata/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | index.html 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webappsec-fetch-metadata/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FPWD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webappsec-fetch-metadata/HEAD/FPWD.html -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webappsec-fetch-metadata/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webappsec-fetch-metadata/HEAD/README.md -------------------------------------------------------------------------------- /index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webappsec-fetch-metadata/HEAD/index.bs -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/webappsec-fetch-metadata/HEAD/w3c.json --------------------------------------------------------------------------------