/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/** * Accessible with children listed in the ancestry structure calculated by the * walker.
*/
types.addDictType("accessibleWithChildren", { // Accessible
accessible: "accessible", // Accessible's children
children: "array:accessible",
});
/** * Data passed via "audit-event" to the client. It may include type, a list of * ancestries for accessible actors that have failing accessibility checks or * a progress information.
*/
types.addDictType("auditEventData", {
type: "string", // List of ancestries (array:accessibleWithChildren)
ancestries: "nullable:array:array:accessibleWithChildren", // Audit progress information
progress: "nullable:json",
});
/** * Accessible relation object described by its type that also includes relation targets.
*/
types.addDictType("accessibleRelation", { // Accessible relation type
type: "string", // Accessible relation's targets
targets: "array:accessible",
});
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.