| Index: LayoutTests/http/tests/credentialmanager/credentialscontainer-requireusermediation-basics.html
|
| diff --git a/LayoutTests/http/tests/credentialmanager/credentialscontainer-notifysignedout-basics.html b/LayoutTests/http/tests/credentialmanager/credentialscontainer-requireusermediation-basics.html
|
| similarity index 64%
|
| rename from LayoutTests/http/tests/credentialmanager/credentialscontainer-notifysignedout-basics.html
|
| rename to LayoutTests/http/tests/credentialmanager/credentialscontainer-requireusermediation-basics.html
|
| index 09cf89358dcdd86dccfa7ac0c8359975019d6d50..9df20f44757f1bb0ebc7437e9061177208365a0f 100644
|
| --- a/LayoutTests/http/tests/credentialmanager/credentialscontainer-notifysignedout-basics.html
|
| +++ b/LayoutTests/http/tests/credentialmanager/credentialscontainer-requireusermediation-basics.html
|
| @@ -1,5 +1,5 @@
|
| <!DOCTYPE html>
|
| -<title>Credential Manager: notifySignedOut() basics.</title>
|
| +<title>Credential Manager: requireUserMediation() basics.</title>
|
| <script src="../resources/testharness.js"></script>
|
| <script src="../resources/testharnessreport.js"></script>
|
| <script>
|
| @@ -9,12 +9,12 @@ function stubResolverChecker(c) {
|
| }
|
|
|
| function stubRejectionChecker(reason) {
|
| - assert_unreached("notifySignedOut() should not reject, but did: " + reason.name);
|
| + assert_unreached("requireUserMediation() should not reject, but did: " + reason.name);
|
| }
|
|
|
| async_test(function () {
|
| - navigator.credentials.notifySignedOut().then(
|
| + navigator.credentials.requireUserMediation().then(
|
| this.step_func(stubResolverChecker.bind(this)),
|
| this.step_func(stubRejectionChecker.bind(this)));
|
| -}, "Verify the basics of notifySignedOut()");
|
| +}, "Verify the basics of requireUserMediation()");
|
| </script>
|
|
|