File tree 10 files changed +15
-15
lines changed
federatedcredentialmanagement
test/org/openqa/selenium/environment/webserver
lib/selenium/webdriver/common/fedcm
sig/lib/selenium/webdriver/fedcm
10 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -12300,7 +12300,7 @@ experimental domain FedCm
12300
12300
parameters
12301
12301
# Allows callers to disable the promise rejection delay that would
12302
12302
# 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)
12304
12304
optional boolean disableRejectionDelay
12305
12305
12306
12306
command disable
Original file line number Diff line number Diff line change @@ -12340,7 +12340,7 @@ experimental domain FedCm
12340
12340
parameters
12341
12341
# Allows callers to disable the promise rejection delay that would
12342
12342
# 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)
12344
12344
optional boolean disableRejectionDelay
12345
12345
12346
12346
command disable
Original file line number Diff line number Diff line change @@ -12447,7 +12447,7 @@ experimental domain FedCm
12447
12447
parameters
12448
12448
# Allows callers to disable the promise rejection delay that would
12449
12449
# 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)
12451
12451
optional boolean disableRejectionDelay
12452
12452
12453
12453
command disable
Original file line number Diff line number Diff line change 22
22
/**
23
23
* Represents an account displayed in a FedCM account list.
24
24
*
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>
29
29
*/
30
30
public class FederatedCredentialManagementAccount {
31
31
private final String accountId ;
Original file line number Diff line number Diff line change 22
22
/**
23
23
* Represents an open dialog of the Federated Credential Management API.
24
24
*
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>
26
26
*/
27
27
public interface FederatedCredentialManagementDialog {
28
28
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public interface HasFederatedCredentialManagement {
26
26
* Disables the promise rejection delay.
27
27
*
28
28
* <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
30
30
* to let tests run faster where this is not relevant.
31
31
*/
32
32
void setDelayEnabled (boolean enabled );
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ public interface DriverCommand {
149
149
String REMOVE_ALL_CREDENTIALS = "removeAllCredentials" ;
150
150
String SET_USER_VERIFIED = "setUserVerified" ;
151
151
// Federated Credential Management API
152
- // https://fedidcg .github.io/FedCM/#automation
152
+ // https://w3c-fedid .github.io/FedCM/#automation
153
153
String CANCEL_DIALOG = "cancelDialog" ;
154
154
String SELECT_ACCOUNT = "selectAccount" ;
155
155
String CLICK_DIALOG = "clickDialog" ;
Original file line number Diff line number Diff line change 28
28
/**
29
29
* Implements FedCM's ID assertion endpoint.
30
30
*
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
32
32
*/
33
33
class FedCmIdAssertion implements HttpHandler {
34
34
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ module Selenium
21
21
module WebDriver
22
22
module FedCM
23
23
# 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
26
26
class Account
27
27
LOGIN_STATE_SIGNIN = 'SignIn'
28
28
LOGIN_STATE_SIGNUP = 'SignUp'
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ module Selenium
2
2
module WebDriver
3
3
module FedCM
4
4
# 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
7
7
class Account
8
8
@account_id: String
9
9
You can’t perform that action at this time.
0 commit comments