summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webauthn/getcredential-hints.https.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/webauthn/getcredential-hints.https.html')
-rw-r--r--testing/web-platform/tests/webauthn/getcredential-hints.https.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/webauthn/getcredential-hints.https.html b/testing/web-platform/tests/webauthn/getcredential-hints.https.html
new file mode 100644
index 0000000000..45f6e6b48e
--- /dev/null
+++ b/testing/web-platform/tests/webauthn/getcredential-hints.https.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>navigator.credentials.get() with hints</title>
+<meta name="timeout" content="long">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/resources/testdriver.js"></script>
+<script src="/resources/testdriver-vendor.js"></script>
+<script src=helpers.js></script>
+<body></body>
+<script>
+standardSetup(async function() {
+ "use strict";
+
+ const credPromise = createCredential();
+
+ // The 'hints' parameter affects UI, which cannot be tested with WPTs.
+ // However, we can check that unknown values are ignored, as they
+ // should be, and don't trigger an error.
+ new GetCredentialsTest("options.publicKey.hints", ["not-a-defined-value"])
+ .addCredential(credPromise)
+ .runTest("navigator.credentials.get with hints");
+}, {});
+</script>