Skip to content

Commit b2ef56a

Browse files
authored
replace fedcm links with new ones (#14478)
replace all fedcm links with new ones
1 parent 247bc2b commit b2ef56a

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

common/devtools/chromium/v126/browser_protocol.pdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -12300,7 +12300,7 @@ experimental domain FedCm
1230012300
parameters
1230112301
# Allows callers to disable the promise rejection delay that would
1230212302
# normally happen, if this is unimportant to what's being tested.
12303-
# (step 4 of https://fedidcg.github.io/FedCM/#browser-api-rp-sign-in)
12303+
# (step 4 of https://w3c-fedid.github.io/FedCM/#browser-api-rp-sign-in)
1230412304
optional boolean disableRejectionDelay
1230512305

1230612306
command disable

common/devtools/chromium/v127/browser_protocol.pdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -12340,7 +12340,7 @@ experimental domain FedCm
1234012340
parameters
1234112341
# Allows callers to disable the promise rejection delay that would
1234212342
# normally happen, if this is unimportant to what's being tested.
12343-
# (step 4 of https://fedidcg.github.io/FedCM/#browser-api-rp-sign-in)
12343+
# (step 4 of https://w3c-fedid.github.io/FedCM/#browser-api-rp-sign-in)
1234412344
optional boolean disableRejectionDelay
1234512345

1234612346
command disable

common/devtools/chromium/v128/browser_protocol.pdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -12447,7 +12447,7 @@ experimental domain FedCm
1244712447
parameters
1244812448
# Allows callers to disable the promise rejection delay that would
1244912449
# normally happen, if this is unimportant to what's being tested.
12450-
# (step 4 of https://fedidcg.github.io/FedCM/#browser-api-rp-sign-in)
12450+
# (step 4 of https://w3c-fedid.github.io/FedCM/#browser-api-rp-sign-in)
1245112451
optional boolean disableRejectionDelay
1245212452

1245312453
command disable

java/src/org/openqa/selenium/federatedcredentialmanagement/FederatedCredentialManagementAccount.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
/**
2323
* Represents an account displayed in a FedCM account list.
2424
*
25-
* @see <a href="https://fedidcg.github.io/FedCM/#dictdef-identityprovideraccount">
26-
* https://fedidcg.github.io/FedCM/#dictdef-identityprovideraccount</a>
27-
* @see <a href="https://fedidcg.github.io/FedCM/#webdriver-accountlist">
28-
* https://fedidcg.github.io/FedCM/#webdriver-accountlist</a>
25+
* @see <a href="https://w3c-fedid.github.io/FedCM/#dictdef-identityprovideraccount">
26+
* https://w3c-fedid.github.io/FedCM/#dictdef-identityprovideraccount</a>
27+
* @see <a href="https://w3c-fedid.github.io/FedCM/#webdriver-accountlist">
28+
* https://w3c-fedid.github.io/FedCM/#webdriver-accountlist</a>
2929
*/
3030
public class FederatedCredentialManagementAccount {
3131
private final String accountId;

java/src/org/openqa/selenium/federatedcredentialmanagement/FederatedCredentialManagementDialog.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/**
2323
* Represents an open dialog of the Federated Credential Management API.
2424
*
25-
* @see <a href="https://fedidcg.github.io/FedCM/">https://fedidcg.github.io/FedCM/</a>
25+
* @see <a href="https://w3c-fedid.github.io/FedCM/">https://w3c-fedid.github.io/FedCM/</a>
2626
*/
2727
public interface FederatedCredentialManagementDialog {
2828

java/src/org/openqa/selenium/federatedcredentialmanagement/HasFederatedCredentialManagement.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public interface HasFederatedCredentialManagement {
2626
* Disables the promise rejection delay.
2727
*
2828
* <p>FedCM by default delays promise resolution in failure cases for privacy reasons
29-
* (https://fedidcg.github.io/FedCM/#ref-for-setdelayenabled); this function allows turning it off
29+
* (https://w3c-fedid.github.io/FedCM/#ref-for-setdelayenabled); this function allows turning it off
3030
* to let tests run faster where this is not relevant.
3131
*/
3232
void setDelayEnabled(boolean enabled);

java/src/org/openqa/selenium/remote/DriverCommand.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public interface DriverCommand {
149149
String REMOVE_ALL_CREDENTIALS = "removeAllCredentials";
150150
String SET_USER_VERIFIED = "setUserVerified";
151151
// Federated Credential Management API
152-
// https://fedidcg.github.io/FedCM/#automation
152+
// https://w3c-fedid.github.io/FedCM/#automation
153153
String CANCEL_DIALOG = "cancelDialog";
154154
String SELECT_ACCOUNT = "selectAccount";
155155
String CLICK_DIALOG = "clickDialog";

java/test/org/openqa/selenium/environment/webserver/FedCmIdAssertion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Implements FedCM's ID assertion endpoint.
3030
*
31-
* <p>https://fedidcg.github.io/FedCM/#idp-api-id-assertion-endpoint
31+
* <p>https://w3c-fedid.github.io/FedCM/#idp-api-id-assertion-endpoint
3232
*/
3333
class FedCmIdAssertion implements HttpHandler {
3434

rb/lib/selenium/webdriver/common/fedcm/account.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ module Selenium
2121
module WebDriver
2222
module FedCM
2323
# Represents an account displayed in a FedCm account list.
24-
# See: https://fedidcg.github.io/FedCM/#dictdef-identityprovideraccount
25-
# https://fedidcg.github.io/FedCM/#webdriver-accountlist
24+
# See: https://w3c-fedid.github.io/FedCM/#dictdef-identityprovideraccount
25+
# https://w3c-fedid.github.io/FedCM/#webdriver-accountlist
2626
class Account
2727
LOGIN_STATE_SIGNIN = 'SignIn'
2828
LOGIN_STATE_SIGNUP = 'SignUp'

rb/sig/lib/selenium/webdriver/fedcm/account.rbs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ module Selenium
22
module WebDriver
33
module FedCM
44
# Represents an account displayed in a FedCm account list.
5-
# See: https://fedidcg.github.io/FedCM/#dictdef-identityprovideraccount
6-
# https://fedidcg.github.io/FedCM/#webdriver-accountlist
5+
# See: https://w3c-fedid.github.io/FedCM/#dictdef-identityprovideraccount
6+
# https://w3c-fedid.github.io/FedCM/#webdriver-accountlist
77
class Account
88
@account_id: String
99

0 commit comments

Comments
 (0)