Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /fenced-frame/create-credential.https.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Test WebAuthn navigator.credentials.create()</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="/webauthn/helpers.js"></script>
<script src="/common/utils.js"></script>
<script src="resources/utils.js"></script>
<body>
<script>
standardSetup(function () {
promise_test(async () => {
const key = token();
attachFencedFrame(
generateURL('resources/create-credential-inner.https.html', [key]));
// Get the result for the fenced frame.
const fenced_frame_result = await nextValueFromServer(key);
assert_equals(
fenced_frame_result,
'createCredential failed',
'credentials.create should fail on fenced frame');
}, 'navigator.credentials.create');
});
</script>
</body>