diff --git a/testing/web-platform/tests/credential-management/fedcm-multi-idp/abort-multiple-gets-through-first-idp.https.html b/testing/web-platform/tests/credential-management/fedcm-multi-idp/abort-multiple-gets-through-first-idp.https.html index 48644f67a231..ed7c1300bd1b 100644 --- a/testing/web-platform/tests/credential-management/fedcm-multi-idp/abort-multiple-gets-through-first-idp.https.html +++ b/testing/web-platform/tests/credential-management/fedcm-multi-idp/abort-multiple-gets-through-first-idp.https.html @@ -9,7 +9,7 @@ set_fedcm_cookie, set_alt_fedcm_cookie, request_options_with_mediation_required, - default_alt_request_options + alt_request_options_with_mediation_required } from '../support/fedcm-helper.sub.js'; let cookies_promise = Promise.all([set_fedcm_cookie(), set_alt_fedcm_cookie()]); @@ -21,7 +21,7 @@ const first_cred = navigator.credentials.get(first_test_options); let second_controller = new AbortController(); - let second_test_options = default_alt_request_options(); + let second_test_options = alt_request_options_with_mediation_required(); second_test_options.signal = second_controller.signal; const second_cred = navigator.credentials.get(second_test_options); diff --git a/testing/web-platform/tests/credential-management/fedcm-multi-idp/abort-multiple-gets-through-second-idp.https.html b/testing/web-platform/tests/credential-management/fedcm-multi-idp/abort-multiple-gets-through-second-idp.https.html index e95c13271a21..dfe8969932b8 100644 --- a/testing/web-platform/tests/credential-management/fedcm-multi-idp/abort-multiple-gets-through-second-idp.https.html +++ b/testing/web-platform/tests/credential-management/fedcm-multi-idp/abort-multiple-gets-through-second-idp.https.html @@ -9,7 +9,7 @@ set_fedcm_cookie, set_alt_fedcm_cookie, request_options_with_mediation_required, - default_alt_request_options + alt_request_options_with_mediation_required } from '../support/fedcm-helper.sub.js'; let cookies_promise = Promise.all([set_fedcm_cookie(), set_alt_fedcm_cookie()]); @@ -21,7 +21,7 @@ const first_cred = navigator.credentials.get(first_test_options); let second_controller = new AbortController(); - let second_test_options = default_alt_request_options(); + let second_test_options = alt_request_options_with_mediation_required(); second_test_options.signal = second_controller.signal; const second_cred = navigator.credentials.get(second_test_options); diff --git a/testing/web-platform/tests/credential-management/fedcm-multi-idp/get-before-and-after-onload.https.html b/testing/web-platform/tests/credential-management/fedcm-multi-idp/get-before-and-after-onload.https.html index 3c6aeb1a6f1b..dc332870abc7 100644 --- a/testing/web-platform/tests/credential-management/fedcm-multi-idp/get-before-and-after-onload.https.html +++ b/testing/web-platform/tests/credential-management/fedcm-multi-idp/get-before-and-after-onload.https.html @@ -7,7 +7,7 @@