├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auto-publish.yml │ └── tidy.yml ├── .pr-preview.json ├── CONTRIBUTING.md ├── ECHIDNA ├── LICENSE.md ├── README.md ├── demos ├── index.html ├── share-files.html └── share.html ├── docs ├── explainer.md ├── interface.md ├── mocks │ ├── README.md │ ├── mocks.bmpr │ └── share_mobile_web_native.png ├── native.md └── security-privacy-self-review.md ├── imp-report └── index.html ├── index.html ├── level-2 └── index.html ├── tidyconfig.txt └── w3c.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.github/workflows/tidy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/.github/workflows/tidy.yml -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ECHIDNA: -------------------------------------------------------------------------------- 1 | index.html?specStatus=WD&shortName=web-share respec -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/README.md -------------------------------------------------------------------------------- /demos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/demos/index.html -------------------------------------------------------------------------------- /demos/share-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/demos/share-files.html -------------------------------------------------------------------------------- /demos/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/demos/share.html -------------------------------------------------------------------------------- /docs/explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/docs/explainer.md -------------------------------------------------------------------------------- /docs/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/docs/interface.md -------------------------------------------------------------------------------- /docs/mocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/docs/mocks/README.md -------------------------------------------------------------------------------- /docs/mocks/mocks.bmpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/docs/mocks/mocks.bmpr -------------------------------------------------------------------------------- /docs/mocks/share_mobile_web_native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/docs/mocks/share_mobile_web_native.png -------------------------------------------------------------------------------- /docs/native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/docs/native.md -------------------------------------------------------------------------------- /docs/security-privacy-self-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/docs/security-privacy-self-review.md -------------------------------------------------------------------------------- /imp-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/imp-report/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/index.html -------------------------------------------------------------------------------- /level-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/level-2/index.html -------------------------------------------------------------------------------- /tidyconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/tidyconfig.txt -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/web-share/HEAD/w3c.json --------------------------------------------------------------------------------