From c891215b9d2ea144d9b96070d8f9d56eac1ad016 Mon Sep 17 00:00:00 2001 From: Daniel Montalvo <49305434+daniel-montalvo@users.noreply.github.com> Date: Wed, 7 Feb 2024 12:18:37 +0100 Subject: [PATCH] Includes relevant changes from #2102 (#2120) --- index.html | 41 +++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/index.html b/index.html index cd63c4c6d..a9d977adf 100644 --- a/index.html +++ b/index.html @@ -15,10 +15,10 @@ specStatus: "ED", //crEnd: "2012-04-30", //perEnd: "2013-07-23", - //publishDate: "2013-08-22", + //publishDate: "2024-01-23", // the specifications short name, as in https://www.w3.org/TR/short-name/ - shortName: "wai-aria-1.2", + shortName: "wai-aria-1.3", // if you wish the publication date to be other than today, set this //publishDate: "2014-12-11", @@ -28,7 +28,7 @@ // and its maturity status //previousPublishDate: "2014-06-12", //previousMaturity: "WD", - prevRecURI: "https://www.w3.org/TR/wai-aria-1.2/", + prevRecURI: "https://www.w3.org/TR/wai-aria/", //previousDiffURI: "https://www.w3.org/TR/2014/REC-wai-aria-20140320/", // if there a publicly available Editors Draft, this is the link @@ -57,7 +57,7 @@ { name: "Michael Cooper", company: "W3C", - companyURL: "http://www.w3.org", + companyURL: "https://www.w3.org", w3cid: 34017, note: "Editor until 2023" }, @@ -71,14 +71,14 @@ { name: "Shane McCarron", company: "Spec-Ops", - companyURL: "https://www.spec-ops.io", + // companyURL: "https://www.spec-ops.io", w3cid: 89030, note: "Editor until 2018" }, { name: "Richard Schwerdtfeger", company: "Knowbility", - companyURL: "https://www.knowbility.org/", + companyURL: "https://knowbility.org/", w3cid: 2460, note: "Editor until October 2017" }, @@ -116,10 +116,11 @@ // Spec URLs ariaSpecURLs: { - "ED": "", - "WD" : "", - "CR": "", - "REC": "" + "ED": "https://w3c.github.io/aria/", + "FPWD": "https://www.w3.org/TR/wai-aria-1.3/", + "WD": "https://www.w3.org/TR/wai-aria-1.3/", + "CR": "https://www.w3.org/TR/wai-aria-1.3/", + "REC": "https://www.w3.org/TR/wai-aria-1.3/", }, accNameURLs: { "ED": "https://w3c.github.io/accname/", @@ -136,11 +137,11 @@ "REC": "https://www.w3.org/TR/core-aam-1.2/" }, practicesURLs: { - "ED": "https://w3c.github.io/aria-practices/", - "WD" : "https://www.w3.org/TR/wai-aria-practices-1.2/", - "FPWD": "https://www.w3.org/TR/wai-aria-practices-1.2/", - "CR": "https://www.w3.org/TR/wai-aria-practices-1.2/", - "REC": "https://www.w3.org/TR/wai-aria-practices-1.2/" + "ED": "https://www.w3.org/WAI/ARIA/apg/", + "WD" : "https://www.w3.org/WAI/ARIA/apg/", + "FPWD": "https://www.w3.org/WAI/ARIA/apg/", + "CR": "https://www.w3.org/WAI/ARIA/apg/", + "REC": "https://www.w3.org/WAI/ARIA/apg/" }, preProcess: [ linkCrossReferences ], @@ -163,10 +164,10 @@
Accessibility of web content requires semantic information about widgets, structures, and behaviors, in order to allow assistive technologies to convey appropriate information to persons with disabilities. This specification provides an ontology of roles, states, and properties that define accessible user interface elements and can be used to improve the accessibility and interoperability of web content and applications. These semantics are designed to allow an author to properly convey user interface behaviors and structural information to assistive technologies in document-level markup. This version adds features new since WAI-ARIA 1.1 [[wai-aria-1.1]] to improve interoperability with assistive technologies to form a more consistent accessibility model for [[HTML]] and [[SVG2]]. This specification complements both [[HTML]] and [[SVG2]].
-This document is part of the WAI-ARIA suite described in the WAI-ARIA Overview.
+This document is part of the WAI-ARIA suite described in the WAI-ARIA Overview.
The Accessible Rich Internet Applications Working Group seeks feedback on any aspect of the specification. When submitting feedback, please consider issues in the context of the companion documents. To comment, file an issue in the W3C ARIA GitHub repository. If this is not feasible, send email to public-aria@w3.org (comment archive). In-progress updates to the document can be viewed in the publicly visible editors' draft.
+The Accessible Rich Internet Applications Working Group seeks feedback on any aspect of the specification. When submitting feedback, please consider issues in the context of the companion documents. To comment, file an issue in the W3C ARIA GitHub repository. If this is not feasible, send email to public-aria@w3.org (comment archive). In-progress updates to the document can be viewed in the publicly visible editors' draft.
Operating systems and other platforms provide a set of interfaces that expose information about objects and events to assistive technologies. Assistive technologies use these interfaces to get information about and interact with those widgets. Examples of accessibility APIs are Microsoft Active Accessibility [[MSAA]], Microsoft User Interface Automation [[UI-AUTOMATION]], MSAA with UIA Express [[UIA-EXPRESS]], the - Mac OS X Accessibility Protocol [[AXAPI]], the Linux/Unix Accessibility Toolkit [[ATK]] and Assistive Technology Service Provider Interface [[AT-SPI]], and IAccessible2 [[IAccessible2]].
+Operating systems and other platforms provide a set of interfaces that expose information about objects and events to assistive technologies. Assistive technologies use these interfaces to get information about and interact with those widgets. Examples of accessibility APIs are Microsoft Active Accessibility [[MSAA]], Microsoft User Interface Automation [[UI-AUTOMATION]], MSAA with UIA Express [[UIA-EXPRESS]], the + Mac OS X Accessibility Protocol [[AXAPI]], the Linux/Unix Accessibility Toolkit [[ATK]] and Assistive Technology Service Provider Interface [[AT-SPI]], and IAccessible2 [[IAccessible2]].
Typically, the author will use host language semantics to put the widget in the Tab sequence (e.g., tabindex="0"
in HTML) and aria-activedescendant
to point to the ID of the currently active descendant. The author, not the user agent, is responsible for styling the currently active descendant to show it has keyboard focus. The author cannot use :focus
to style the currently active descendant since the actual focus is on the container.
More information on managing focus can be found in the Developing a Keyboard Interface section of the WAI-ARIA Authoring Practices.
+More information on managing focus can be found in the Developing a Keyboard Interface section of the WAI-ARIA Authoring Practices.