├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── auto-publish.yml ├── .pr-preview.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FileAPI.css ├── LICENSE.md ├── README.md ├── TR.html ├── dfn.js ├── index.bs ├── section-links.js └── w3c.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FileAPI.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/FileAPI.css -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/README.md -------------------------------------------------------------------------------- /TR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/TR.html -------------------------------------------------------------------------------- /dfn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/dfn.js -------------------------------------------------------------------------------- /index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/index.bs -------------------------------------------------------------------------------- /section-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/section-links.js -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/FileAPI/HEAD/w3c.json --------------------------------------------------------------------------------