<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>311725</bug_id>
          
          <creation_ts>2026-04-08 05:16:44 -0700</creation_ts>
          <short_desc>CredentialsContainer::get(): credential type combination check is incomplete — only validates publicKey and digital</short_desc>
          <delta_ts>2026-04-08 05:21:21 -0700</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>WebCore Misc.</component>
          <version>WebKit Local Build</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</op_sys>
          <bug_status>NEW</bug_status>
          <resolution></resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>InRadar</keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          <dependson>310788</dependson>
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Marcos Caceres">marcosc</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>webkit-bug-importer</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>2197951</commentid>
    <comment_count>0</comment_count>
    <who name="Marcos Caceres">marcosc</who>
    <bug_when>2026-04-08 05:16:44 -0700</bug_when>
    <thetext>The combination check added in bug 310788 (PR #62231) only validates publicKey/digital combinations. It does not correctly handle combinations involving password, federated, identity, or otp.

Per https://github.com/w3c/webappsec-credential-management/pull/261, the registry defines &quot;Types allowed in the same get() request&quot;:

  digital    → empty (cannot mix with any other type)
  federated  → password only
  identity   → empty
  otp        → empty
  password   → federated only
  publicKey  → empty

The spec algorithm says (verbatim):
&quot;If |type1|&apos;s types allowed in the same get() request doesn&apos;t contain |type2|, then return a promise rejected with a NotSupportedError DOMException.&quot;

Current bugs:

1. { publicKey: {...}, password: true } — should NotSupportedError, but currently passes and silently ignores password.
2. { digital: {...}, password: true } — same problem.
3. { password: true, federated: {...} } — valid combo per spec, but we reject with &quot;Missing request type&quot; since we only look for publicKey/digital.
4. { password: true } alone — valid (if unimplemented) type, but we reject with &quot;Missing request type&quot;.

Fix: validate all combinations against the registry table. For unimplemented types (password, federated, identity, otp), return null rather than &quot;Missing request type&quot;.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>2197952</commentid>
    <comment_count>1</comment_count>
    <who name="Radar WebKit Bug Importer">webkit-bug-importer</who>
    <bug_when>2026-04-08 05:16:50 -0700</bug_when>
    <thetext>&lt;rdar://problem/174313024&gt;</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>