├── .github └── workflows │ ├── build-idl.yaml │ └── build-validate-publish.yaml ├── .gitignore ├── .pr-preview.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── compile.sh ├── explorations ├── HOWTO-chrome.md ├── README.md ├── activation.md ├── alternatives_considered.md ├── cookies.md ├── debug-network-requests-chromium.md ├── directed_basic_profile.md ├── directed_identifiers.md ├── drafts │ ├── delegation_oriented_api.md │ ├── interception.md │ └── mediation_oriented_api.md ├── glossary.md ├── iframe_support.md ├── navigations.md ├── permission_oriented_api.md ├── prior.md ├── problem.md ├── proposal.md ├── related_problems.md ├── roadmap.md ├── static │ ├── anchor-js.min.js │ ├── delegation-api-flow.svg │ ├── delegation-api-recovery-legacy-flow.svg │ ├── delegation-api-recovery-signin-flow.svg │ ├── delegation-api-signup-flow.svg │ ├── devtools │ │ ├── devtools-fedcm.png │ │ ├── navigate-link.png │ │ ├── open-devtools.png │ │ └── request-inspect.png │ ├── droid.css │ ├── favicon.ico │ ├── google-sans.css │ ├── idp.html │ ├── index.css │ ├── mock1.svg │ ├── mock10.svg │ ├── mock11.svg │ ├── mock12.svg │ ├── mock14.svg │ ├── mock15.svg │ ├── mock16.svg │ ├── mock17.svg │ ├── mock18.svg │ ├── mock19.svg │ ├── mock2.svg │ ├── mock20.svg │ ├── mock21.svg │ ├── mock22.svg │ ├── mock24.svg │ ├── mock25.svg │ ├── mock26.svg │ ├── mock27.svg │ ├── mock28.svg │ ├── mock29.svg │ ├── mock30.svg │ ├── mock32.svg │ ├── mock33.svg │ ├── mock35.svg │ ├── mock36.svg │ ├── mock38.svg │ ├── mock39.gif │ ├── mock4.svg │ ├── mock40.gif │ ├── mock41.svg │ ├── mock44.svg │ ├── mock6.svg │ ├── mock7.svg │ ├── mock8.png │ ├── mock9.svg │ ├── permission_based_flow.svg │ ├── rouge.css │ └── rp.html └── structured_data_support.md ├── meetings ├── 2020 │ ├── Browsers and Federation - OpenID.pdf │ ├── The Web Platform, Privacy and Federation - IIW.pdf │ └── The Web Platform, Privacy and Federation - TPAC.pdf ├── 2021 │ ├── 2021-05-25-notes.md │ ├── 2021-05-26-notes.md │ ├── 2021.05.25 - Identity Workshop - Microsoft Edge.pdf │ ├── 25-26_May_2021.md │ ├── BlinkOn 15 -- FedCM.pdf │ ├── FedCM @ TPAC 2021 (1).pdf │ ├── FedCM_ The Timming Attack Problem (1).pdf │ ├── Federated Credential Management - TPAC 2021.pdf │ ├── Firefox and Federated Login.pdf │ ├── Intro - Federation and Browsers.pdf │ ├── Web Identity API.pdf │ ├── WebID - BlinkOn 14.pdf │ ├── WebID And the Privacy Sandbox.pdf │ ├── mozilla-screenshot-1.png │ ├── mozilla-screenshot-2.png │ ├── poll1.png │ ├── poll2.png │ ├── poll3.png │ ├── poll4.png │ └── poll5.png ├── 2022 │ ├── FedCM @ TPAC.pdf │ ├── FedCM BlinkOn 16.pdf │ ├── FedCM_ Options for the Timing Attack Problem (8_16_2022).pdf │ └── FedCM_ Options for the Timing Attack Problem 2022-08-31.pdf └── 2023 │ └── CHAPI-FedCM-CCG-Jan-2023.pdf ├── privacy_security_questionnaire.md ├── spec ├── Makefile ├── extract_idl.rb ├── img │ ├── mock13.svg │ ├── mock23.svg │ ├── mock3.svg │ ├── mock31.svg │ ├── mock34.svg │ ├── mock37.svg │ ├── mock42.svg │ ├── mock43.svg │ ├── mock45.svg │ ├── mock46.svg │ └── mock5.svg └── index.bs └── w3c.json /.github/workflows/build-idl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/.github/workflows/build-idl.yaml -------------------------------------------------------------------------------- /.github/workflows/build-validate-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/.github/workflows/build-validate-publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/.gitignore -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/README.md -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | make -C spec 4 | -------------------------------------------------------------------------------- /explorations/HOWTO-chrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/HOWTO-chrome.md -------------------------------------------------------------------------------- /explorations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/README.md -------------------------------------------------------------------------------- /explorations/activation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/activation.md -------------------------------------------------------------------------------- /explorations/alternatives_considered.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/alternatives_considered.md -------------------------------------------------------------------------------- /explorations/cookies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/cookies.md -------------------------------------------------------------------------------- /explorations/debug-network-requests-chromium.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/debug-network-requests-chromium.md -------------------------------------------------------------------------------- /explorations/directed_basic_profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/directed_basic_profile.md -------------------------------------------------------------------------------- /explorations/directed_identifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/directed_identifiers.md -------------------------------------------------------------------------------- /explorations/drafts/delegation_oriented_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/drafts/delegation_oriented_api.md -------------------------------------------------------------------------------- /explorations/drafts/interception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/drafts/interception.md -------------------------------------------------------------------------------- /explorations/drafts/mediation_oriented_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/drafts/mediation_oriented_api.md -------------------------------------------------------------------------------- /explorations/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/glossary.md -------------------------------------------------------------------------------- /explorations/iframe_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/iframe_support.md -------------------------------------------------------------------------------- /explorations/navigations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/navigations.md -------------------------------------------------------------------------------- /explorations/permission_oriented_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/permission_oriented_api.md -------------------------------------------------------------------------------- /explorations/prior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/prior.md -------------------------------------------------------------------------------- /explorations/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/problem.md -------------------------------------------------------------------------------- /explorations/proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/proposal.md -------------------------------------------------------------------------------- /explorations/related_problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/related_problems.md -------------------------------------------------------------------------------- /explorations/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/roadmap.md -------------------------------------------------------------------------------- /explorations/static/anchor-js.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/anchor-js.min.js -------------------------------------------------------------------------------- /explorations/static/delegation-api-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/delegation-api-flow.svg -------------------------------------------------------------------------------- /explorations/static/delegation-api-recovery-legacy-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/delegation-api-recovery-legacy-flow.svg -------------------------------------------------------------------------------- /explorations/static/delegation-api-recovery-signin-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/delegation-api-recovery-signin-flow.svg -------------------------------------------------------------------------------- /explorations/static/delegation-api-signup-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/delegation-api-signup-flow.svg -------------------------------------------------------------------------------- /explorations/static/devtools/devtools-fedcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/devtools/devtools-fedcm.png -------------------------------------------------------------------------------- /explorations/static/devtools/navigate-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/devtools/navigate-link.png -------------------------------------------------------------------------------- /explorations/static/devtools/open-devtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/devtools/open-devtools.png -------------------------------------------------------------------------------- /explorations/static/devtools/request-inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/devtools/request-inspect.png -------------------------------------------------------------------------------- /explorations/static/droid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/droid.css -------------------------------------------------------------------------------- /explorations/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/favicon.ico -------------------------------------------------------------------------------- /explorations/static/google-sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/google-sans.css -------------------------------------------------------------------------------- /explorations/static/idp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/idp.html -------------------------------------------------------------------------------- /explorations/static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/index.css -------------------------------------------------------------------------------- /explorations/static/mock1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock1.svg -------------------------------------------------------------------------------- /explorations/static/mock10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock10.svg -------------------------------------------------------------------------------- /explorations/static/mock11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock11.svg -------------------------------------------------------------------------------- /explorations/static/mock12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock12.svg -------------------------------------------------------------------------------- /explorations/static/mock14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock14.svg -------------------------------------------------------------------------------- /explorations/static/mock15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock15.svg -------------------------------------------------------------------------------- /explorations/static/mock16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock16.svg -------------------------------------------------------------------------------- /explorations/static/mock17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock17.svg -------------------------------------------------------------------------------- /explorations/static/mock18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock18.svg -------------------------------------------------------------------------------- /explorations/static/mock19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock19.svg -------------------------------------------------------------------------------- /explorations/static/mock2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock2.svg -------------------------------------------------------------------------------- /explorations/static/mock20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock20.svg -------------------------------------------------------------------------------- /explorations/static/mock21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock21.svg -------------------------------------------------------------------------------- /explorations/static/mock22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock22.svg -------------------------------------------------------------------------------- /explorations/static/mock24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock24.svg -------------------------------------------------------------------------------- /explorations/static/mock25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock25.svg -------------------------------------------------------------------------------- /explorations/static/mock26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock26.svg -------------------------------------------------------------------------------- /explorations/static/mock27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock27.svg -------------------------------------------------------------------------------- /explorations/static/mock28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock28.svg -------------------------------------------------------------------------------- /explorations/static/mock29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock29.svg -------------------------------------------------------------------------------- /explorations/static/mock30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock30.svg -------------------------------------------------------------------------------- /explorations/static/mock32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock32.svg -------------------------------------------------------------------------------- /explorations/static/mock33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock33.svg -------------------------------------------------------------------------------- /explorations/static/mock35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock35.svg -------------------------------------------------------------------------------- /explorations/static/mock36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock36.svg -------------------------------------------------------------------------------- /explorations/static/mock38.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock38.svg -------------------------------------------------------------------------------- /explorations/static/mock39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock39.gif -------------------------------------------------------------------------------- /explorations/static/mock4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock4.svg -------------------------------------------------------------------------------- /explorations/static/mock40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock40.gif -------------------------------------------------------------------------------- /explorations/static/mock41.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock41.svg -------------------------------------------------------------------------------- /explorations/static/mock44.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock44.svg -------------------------------------------------------------------------------- /explorations/static/mock6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock6.svg -------------------------------------------------------------------------------- /explorations/static/mock7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock7.svg -------------------------------------------------------------------------------- /explorations/static/mock8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock8.png -------------------------------------------------------------------------------- /explorations/static/mock9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/mock9.svg -------------------------------------------------------------------------------- /explorations/static/permission_based_flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/permission_based_flow.svg -------------------------------------------------------------------------------- /explorations/static/rouge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/rouge.css -------------------------------------------------------------------------------- /explorations/static/rp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/static/rp.html -------------------------------------------------------------------------------- /explorations/structured_data_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/explorations/structured_data_support.md -------------------------------------------------------------------------------- /meetings/2020/Browsers and Federation - OpenID.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2020/Browsers and Federation - OpenID.pdf -------------------------------------------------------------------------------- /meetings/2020/The Web Platform, Privacy and Federation - IIW.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2020/The Web Platform, Privacy and Federation - IIW.pdf -------------------------------------------------------------------------------- /meetings/2020/The Web Platform, Privacy and Federation - TPAC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2020/The Web Platform, Privacy and Federation - TPAC.pdf -------------------------------------------------------------------------------- /meetings/2021/2021-05-25-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/2021-05-25-notes.md -------------------------------------------------------------------------------- /meetings/2021/2021-05-26-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/2021-05-26-notes.md -------------------------------------------------------------------------------- /meetings/2021/2021.05.25 - Identity Workshop - Microsoft Edge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/2021.05.25 - Identity Workshop - Microsoft Edge.pdf -------------------------------------------------------------------------------- /meetings/2021/25-26_May_2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/25-26_May_2021.md -------------------------------------------------------------------------------- /meetings/2021/BlinkOn 15 -- FedCM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/BlinkOn 15 -- FedCM.pdf -------------------------------------------------------------------------------- /meetings/2021/FedCM @ TPAC 2021 (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/FedCM @ TPAC 2021 (1).pdf -------------------------------------------------------------------------------- /meetings/2021/FedCM_ The Timming Attack Problem (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/FedCM_ The Timming Attack Problem (1).pdf -------------------------------------------------------------------------------- /meetings/2021/Federated Credential Management - TPAC 2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/Federated Credential Management - TPAC 2021.pdf -------------------------------------------------------------------------------- /meetings/2021/Firefox and Federated Login.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/Firefox and Federated Login.pdf -------------------------------------------------------------------------------- /meetings/2021/Intro - Federation and Browsers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/Intro - Federation and Browsers.pdf -------------------------------------------------------------------------------- /meetings/2021/Web Identity API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/Web Identity API.pdf -------------------------------------------------------------------------------- /meetings/2021/WebID - BlinkOn 14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/WebID - BlinkOn 14.pdf -------------------------------------------------------------------------------- /meetings/2021/WebID And the Privacy Sandbox.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/WebID And the Privacy Sandbox.pdf -------------------------------------------------------------------------------- /meetings/2021/mozilla-screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/mozilla-screenshot-1.png -------------------------------------------------------------------------------- /meetings/2021/mozilla-screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/mozilla-screenshot-2.png -------------------------------------------------------------------------------- /meetings/2021/poll1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/poll1.png -------------------------------------------------------------------------------- /meetings/2021/poll2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/poll2.png -------------------------------------------------------------------------------- /meetings/2021/poll3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/poll3.png -------------------------------------------------------------------------------- /meetings/2021/poll4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/poll4.png -------------------------------------------------------------------------------- /meetings/2021/poll5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2021/poll5.png -------------------------------------------------------------------------------- /meetings/2022/FedCM @ TPAC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2022/FedCM @ TPAC.pdf -------------------------------------------------------------------------------- /meetings/2022/FedCM BlinkOn 16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2022/FedCM BlinkOn 16.pdf -------------------------------------------------------------------------------- /meetings/2022/FedCM_ Options for the Timing Attack Problem (8_16_2022).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2022/FedCM_ Options for the Timing Attack Problem (8_16_2022).pdf -------------------------------------------------------------------------------- /meetings/2022/FedCM_ Options for the Timing Attack Problem 2022-08-31.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2022/FedCM_ Options for the Timing Attack Problem 2022-08-31.pdf -------------------------------------------------------------------------------- /meetings/2023/CHAPI-FedCM-CCG-Jan-2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/meetings/2023/CHAPI-FedCM-CCG-Jan-2023.pdf -------------------------------------------------------------------------------- /privacy_security_questionnaire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/privacy_security_questionnaire.md -------------------------------------------------------------------------------- /spec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/Makefile -------------------------------------------------------------------------------- /spec/extract_idl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/extract_idl.rb -------------------------------------------------------------------------------- /spec/img/mock13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/img/mock13.svg -------------------------------------------------------------------------------- /spec/img/mock23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/img/mock23.svg -------------------------------------------------------------------------------- /spec/img/mock3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/img/mock3.svg -------------------------------------------------------------------------------- /spec/img/mock31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/img/mock31.svg -------------------------------------------------------------------------------- /spec/img/mock34.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/img/mock34.svg -------------------------------------------------------------------------------- /spec/img/mock37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/img/mock37.svg -------------------------------------------------------------------------------- /spec/img/mock42.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/img/mock42.svg -------------------------------------------------------------------------------- /spec/img/mock43.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/img/mock43.svg -------------------------------------------------------------------------------- /spec/img/mock45.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/img/mock45.svg -------------------------------------------------------------------------------- /spec/img/mock46.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/img/mock46.svg -------------------------------------------------------------------------------- /spec/img/mock5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/img/mock5.svg -------------------------------------------------------------------------------- /spec/index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/spec/index.bs -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-fedid/FedCM/HEAD/w3c.json --------------------------------------------------------------------------------