chromium/third_party/blink/web_tests/http/tests/inspector-protocol/webauthn/webauthn-set-credential-properties-errors-expected.txt

Check that the WebAuthn command setCredentialProperties validates parameters
Unknown credential and authenticator:
{
    error : {
        code : -32602
        message : Could not find a Virtual Authenticator matching the ID
    }
    id : <number>
    sessionId : <string>
}
Unknown credential with a valid authenticator:
{
    error : {
        code : -32602
        message : Could not find a credential matching the ID
    }
    id : <number>
    sessionId : <string>
}
Valid credential and authenticator:
{
    id : <number>
    result : {
    }
    sessionId : <string>
}