summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/credential-management/fedcm-context.https.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:50 +0000
commitdef92d1b8e9d373e2f6f27c366d578d97d8960c6 (patch)
tree2ef34b9ad8bb9a9220e05d60352558b15f513894 /testing/web-platform/tests/credential-management/fedcm-context.https.html
parentAdding debian version 125.0.3-1. (diff)
downloadfirefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.tar.xz
firefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.zip
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/credential-management/fedcm-context.https.html')
-rw-r--r--testing/web-platform/tests/credential-management/fedcm-context.https.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/testing/web-platform/tests/credential-management/fedcm-context.https.html b/testing/web-platform/tests/credential-management/fedcm-context.https.html
index bc1f96eafa..7b3e1032af 100644
--- a/testing/web-platform/tests/credential-management/fedcm-context.https.html
+++ b/testing/web-platform/tests/credential-management/fedcm-context.https.html
@@ -16,32 +16,32 @@ import {request_options_with_mediation_required,
fedcm_test(async t => {
let p = navigator.credentials.get(request_options_with_mediation_required());
- const title = await fedcm_get_title_promise(t);
- assert_true(title.toLowerCase().includes('sign in'));
+ const result = await fedcm_get_title_promise(t);
+ assert_true(result.title.toLowerCase().includes('sign in'));
window.test_driver.select_fedcm_account(0);
return p;
}, "FedCM call defaults to 'signin' context.");
fedcm_test(async t => {
let p = navigator.credentials.get(request_options_with_context("manifest.py", "signup"));
- const title = await fedcm_get_title_promise(t);
- assert_true(title.toLowerCase().includes('sign up'));
+ const result = await fedcm_get_title_promise(t);
+ assert_true(result.title.toLowerCase().includes('sign up'));
window.test_driver.select_fedcm_account(0);
return p;
}, "FedCM with 'signup' context.");
fedcm_test(async t => {
let p = navigator.credentials.get(request_options_with_context("manifest.py", "use"));
- const title = await fedcm_get_title_promise(t);
- assert_true(title.toLowerCase().includes('use'));
+ const result = await fedcm_get_title_promise(t);
+ assert_true(result.title.toLowerCase().includes('use'));
window.test_driver.select_fedcm_account(0);
return p;
}, "FedCM with 'use' context.");
fedcm_test(async t => {
let p = navigator.credentials.get(request_options_with_context("manifest.py", "continue"));
- const title = await fedcm_get_title_promise(t);
- assert_true(title.toLowerCase().includes('continue'));
+ const result = await fedcm_get_title_promise(t);
+ assert_true(result.title.toLowerCase().includes('continue'));
window.test_driver.select_fedcm_account(0);
return p;
}, "FedCM with 'continue' context.");