├── .github └── workflows │ └── build.yml ├── .gitignore ├── .pr-preview.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Permissions.md ├── README.md ├── Scheme.md ├── SecurityPrivacyQuestionnaire.md ├── Updates.md ├── isolated-contexts.bs └── w3c.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/isolated-web-apps/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /isolated-contexts.html 2 | -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/isolated-web-apps/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/isolated-web-apps/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/isolated-web-apps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/isolated-web-apps/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/isolated-web-apps/HEAD/Permissions.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/isolated-web-apps/HEAD/README.md -------------------------------------------------------------------------------- /Scheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/isolated-web-apps/HEAD/Scheme.md -------------------------------------------------------------------------------- /SecurityPrivacyQuestionnaire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/isolated-web-apps/HEAD/SecurityPrivacyQuestionnaire.md -------------------------------------------------------------------------------- /Updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/isolated-web-apps/HEAD/Updates.md -------------------------------------------------------------------------------- /isolated-contexts.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/isolated-web-apps/HEAD/isolated-contexts.bs -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/isolated-web-apps/HEAD/w3c.json --------------------------------------------------------------------------------