forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FedCM] Make signin_url required if ISS is enabled
When the IDP signin status API is enabled, we need to have a signin_url so we can show the mismatch dialog. This CL implements that. Bug: 1472328 Change-Id: I86f7f4f46f0f034ee2a842bae4a476d0e260df7e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4897378 Commit-Queue: Yi Gu <[email protected]> Reviewed-by: Yi Gu <[email protected]> Commit-Queue: Christian Biesinger <[email protected]> Auto-Submit: Christian Biesinger <[email protected]> Cr-Commit-Position: refs/heads/main@{#1202887}
- Loading branch information
1 parent
54cc660
commit ee817bb
Showing
8 changed files
with
16 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"accounts_endpoint": "accounts.py", | ||
"client_metadata_endpoint": "client_metadata.py", | ||
"id_assertion_endpoint": "token.py" | ||
"id_assertion_endpoint": "token.py", | ||
"signin_url": "signin.html" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
credential-management/support/fedcm/manifest_redirect_accounts.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"accounts_endpoint": "/common/redirect.py?location=/credential-management/support/fedcm/accounts.py", | ||
"client_metadata_endpoint": "client_metadata.py", | ||
"id_assertion_endpoint": "token.py" | ||
"id_assertion_endpoint": "token.py", | ||
"signin_url": "signin.html" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
credential-management/support/fedcm/manifest_with_account_auto_selected_flag.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"accounts_endpoint": "two_accounts.py", | ||
"client_metadata_endpoint": "client_metadata.py", | ||
"id_assertion_endpoint": "token_with_account_auto_selected_flag.py" | ||
"id_assertion_endpoint": "token_with_account_auto_selected_flag.py", | ||
"signin_url": "signin.html" | ||
} |
3 changes: 2 additions & 1 deletion
3
credential-management/support/fedcm/manifest_with_no_accounts.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"accounts_endpoint": "no_accounts.py", | ||
"client_metadata_endpoint": "client_metadata.py", | ||
"id_assertion_endpoint": "token_with_account_id.py" | ||
"id_assertion_endpoint": "token_with_account_id.py", | ||
"signin_url": "signin.html" | ||
} |
3 changes: 2 additions & 1 deletion
3
credential-management/support/fedcm/manifest_with_single_account.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"accounts_endpoint": "single_account.py", | ||
"client_metadata_endpoint": "client_metadata.py", | ||
"id_assertion_endpoint": "token_with_account_id.py" | ||
"id_assertion_endpoint": "token_with_account_id.py", | ||
"signin_url": "signin.html" | ||
} |
3 changes: 2 additions & 1 deletion
3
credential-management/support/fedcm/manifest_with_two_accounts.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"accounts_endpoint": "two_accounts.py", | ||
"client_metadata_endpoint": "client_metadata.py", | ||
"id_assertion_endpoint": "token_with_account_id.py" | ||
"id_assertion_endpoint": "token_with_account_id.py", | ||
"signin_url": "signin.html" | ||
} |