From f6bb695147e7b69f45a528e1dd482e6712ea388f Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Tue, 2 Sep 2025 13:24:21 +1000 Subject: [PATCH 1/2] DOC-3209: Auto-suggest alt text from existing alt, aria-label, and title attributes with priority fallback in image repair dialogs. --- modules/ROOT/pages/8.1.0-release-notes.adoc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/modules/ROOT/pages/8.1.0-release-notes.adoc b/modules/ROOT/pages/8.1.0-release-notes.adoc index 3e7a6181b4..fda0375b1d 100644 --- a/modules/ROOT/pages/8.1.0-release-notes.adoc +++ b/modules/ROOT/pages/8.1.0-release-notes.adoc @@ -54,6 +54,21 @@ The following premium plugin updates were released alongside {productname} {rele // For information on the **** plugin, see: xref:.adoc[]. +=== Accessibility Checker + +The {productname} {release-version} release includes an accompanying release of the **Accessibility Checker** premium plugin. + +**Accessibility Checker** includes the following improvement. + +==== Auto-suggest `+alt+` text from existing `+alt+`, `+aria-label+`, and `+title+` attributes with priority fallback in image repair dialogs. +// #TINY-12547 + +In previous version of **Accessibility Checker**, the image repair dialog only proposed values from `+alt+`, ignoring `+aria-label+` and `+title+`, which forced manual entry and slowed accessibility repairs while increasing the risk of inconsistent descriptions. + +{productname} {release-version} now auto-suggests `+alt+` text using a priority-based fallback that checks existing attributes in order `+alt+`, then `+aria-label+`, then `+title+` and leaves the field empty if none are present. This ensures that users can label images faster and with greater accuracy by leveraging existing accessibility attributes, improving repair efficiency and consistency. + +For information on the **Accessibility Checker** plugin, see: xref:a11ychecker.adoc[Accessibility Checker]. + [[improvements]] == Improvements From a33f54811aab3e694c90a3a5ff67bfe9156f9cfd Mon Sep 17 00:00:00 2001 From: "Arvin(Jintao) Han" <20640097+ArvinJ-H@users.noreply.github.com> Date: Mon, 15 Sep 2025 14:11:09 +1000 Subject: [PATCH 2/2] Apply suggestion from @kemister85 Co-authored-by: Karl Kemister-Sheppard --- modules/ROOT/pages/8.1.0-release-notes.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/8.1.0-release-notes.adoc b/modules/ROOT/pages/8.1.0-release-notes.adoc index fda0375b1d..b633596875 100644 --- a/modules/ROOT/pages/8.1.0-release-notes.adoc +++ b/modules/ROOT/pages/8.1.0-release-notes.adoc @@ -65,7 +65,7 @@ The {productname} {release-version} release includes an accompanying release of In previous version of **Accessibility Checker**, the image repair dialog only proposed values from `+alt+`, ignoring `+aria-label+` and `+title+`, which forced manual entry and slowed accessibility repairs while increasing the risk of inconsistent descriptions. -{productname} {release-version} now auto-suggests `+alt+` text using a priority-based fallback that checks existing attributes in order `+alt+`, then `+aria-label+`, then `+title+` and leaves the field empty if none are present. This ensures that users can label images faster and with greater accuracy by leveraging existing accessibility attributes, improving repair efficiency and consistency. +{productname} {release-version} now auto-suggests `+alt+` text using a priority-based fallback that checks existing attributes in order `+aria-labelledby+`, `+aria-label+`, `+alt+` then `+title+` and leaves the field empty if none are present. This ensures that users can label images faster and with greater accuracy by leveraging existing accessibility attributes, improving repair efficiency and consistency. For information on the **Accessibility Checker** plugin, see: xref:a11ychecker.adoc[Accessibility Checker].