// Copyright 2026 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Proposal https://github.com/fedidcg/federation-element
[
    Exposed=Window,
    RuntimeEnabled=LoginElement
] interface HTMLCredentialElement : HTMLElement {
    [CEReactions, Reflect] attribute DOMString type;
    [CEReactions, Reflect] attribute DOMString clientId;
    [CEReactions, Reflect, URL] attribute USVString configURL;
    [CEReactions, Reflect] attribute DOMString loginHint;
    [CEReactions, Reflect] attribute DOMString domainHint;
    [CEReactions, Reflect] attribute DOMString fields;
    [CEReactions, Reflect] attribute DOMString params;
};
