chromium/third_party/blink/renderer/core/dom/aria_relationship_attributes.idl

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

// ARIA reflection of relationship properties.
// https://w3c.github.io/aria/#idl-interface
[
    RuntimeEnabled=AOMAriaRelationshipProperties
] interface mixin AriaRelationshipAttributes {
    [CEReactions, Reflect=aria_activedescendant, Measure] attribute Element? ariaActiveDescendantElement;
    [CEReactions, Measure] attribute FrozenArray<Element>? ariaControlsElements;
    [CEReactions, Measure] attribute FrozenArray<Element>? ariaDescribedByElements;
    [CEReactions, Measure] attribute FrozenArray<Element>? ariaDetailsElements;
    [CEReactions, Measure] attribute FrozenArray<Element>? ariaErrorMessageElements;
    [CEReactions, Measure] attribute FrozenArray<Element>? ariaFlowToElements;
    [CEReactions, Measure] attribute FrozenArray<Element>? ariaLabelledByElements;
    [CEReactions, Measure] attribute FrozenArray<Element>? ariaOwnsElements;
};

Element includes AriaRelationshipAttributes;
ElementInternals includes AriaRelationshipAttributes;