├── .github └── actions │ └── auto-publish.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Design.md ├── LICENSE.md ├── README.md ├── SP-questions.md ├── soft-navigations.bs └── w3c.json /.github/actions/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/soft-navigations/HEAD/.github/actions/auto-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.html -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/soft-navigations/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/soft-navigations/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/soft-navigations/HEAD/Design.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/soft-navigations/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/soft-navigations/HEAD/README.md -------------------------------------------------------------------------------- /SP-questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/soft-navigations/HEAD/SP-questions.md -------------------------------------------------------------------------------- /soft-navigations.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/soft-navigations/HEAD/soft-navigations.bs -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/soft-navigations/HEAD/w3c.json --------------------------------------------------------------------------------