Commit 1b488764 authored by Kim Paulhamus's avatar Kim Paulhamus Committed by Commit Bot

Update excludeList => excludeCredentials in browsertest.

Per https://w3c.github.io/webauthn/#dictdef-publickeycredentialcreationoptions

Change-Id: I78783bf1722d727e7014893e5f98e8e77c313b39
Reviewed-on: https://chromium-review.googlesource.com/933372Reviewed-by: default avatarVadym Doroshenko <dvadym@chromium.org>
Commit-Queue: Kim Paulhamus <kpaulhamus@chromium.org>
Cr-Commit-Position: refs/heads/master@{#538823}
parent d1dd0315
......@@ -97,7 +97,7 @@ class CredentialManagerBrowserTest : public PasswordManagerBrowserTestBase {
" icon: 'https://pics.acme.com/00/p/aBjjjpqPb.png'},"
" pubKeyCredParams: [{ type: 'public-key', alg: '123'}],"
" timeout: 60000,"
" excludeList: [] }"
" excludeCredentials: [] }"
"}).catch(c => window.domAutomationController.send(c.toString()));";
ASSERT_TRUE(
content::ExecuteScriptAndExtractString(web_contents, script, &result));
......@@ -121,7 +121,7 @@ class CredentialManagerBrowserTest : public PasswordManagerBrowserTestBase {
" icon: 'https://pics.acme.com/00/p/aBjjjpqPb.png'},"
" pubKeyCredParams: [{ type: 'public-key', alg: '-7'}],"
" timeout: 60000,"
" excludeList: [] }"
" excludeCredentials: [] }"
"}).catch(c => window.domAutomationController.send(c.toString()));";
ASSERT_TRUE(
content::ExecuteScriptAndExtractString(web_contents, script, &result));
......@@ -143,7 +143,7 @@ class CredentialManagerBrowserTest : public PasswordManagerBrowserTestBase {
" icon: 'https://pics.acme.com/00/p/aBjjjpqPb.png'},"
" pubKeyCredParams: [{ type: 'public-key', alg: '-7'}],"
" timeout: 60000,"
" excludeList: [] }"
" excludeCredentials: [] }"
"}).catch(c => window.domAutomationController.send(c.toString()));";
ASSERT_TRUE(
content::ExecuteScriptAndExtractString(web_contents, script, &result));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment