diff --git a/.vscode/dictionaries/proper-names.txt b/.vscode/dictionaries/proper-names.txt index fda3f8551806103..045821cf02ae520 100644 --- a/.vscode/dictionaries/proper-names.txt +++ b/.vscode/dictionaries/proper-names.txt @@ -451,7 +451,6 @@ Orendorff Osmani Owlman Paavo -Paciello Pacman Pagella Paletton @@ -611,6 +610,7 @@ Verou Vieno Vint Visio +Vispero Voikko Volkman Vorbis diff --git a/files/en-us/learn_web_development/core/accessibility/wai-aria_basics/index.md b/files/en-us/learn_web_development/core/accessibility/wai-aria_basics/index.md index d934db401675f16..9b6264ff8783b52 100644 --- a/files/en-us/learn_web_development/core/accessibility/wai-aria_basics/index.md +++ b/files/en-us/learn_web_development/core/accessibility/wai-aria_basics/index.md @@ -84,7 +84,7 @@ This is not an easy question to answer. It is difficult to find a conclusive res 1. There are a lot of features in the WAI-ARIA spec. 2. There are many combinations of operating systems, browsers, and screen readers to consider. -This last point is key — To use a screen reader in the first place, your operating system needs to run browsers that have the necessary accessibility APIs in place to expose the information screen readers need to do their job. Most popular OSes have one or two browsers in place that screen readers can work with. The Paciello Group has a fairly up-to-date post that provides data for this — see [Rough Guide: browsers, operating systems and screen reader support updated](https://www.tpgi.com/rough-guide-browsers-operating-systems-and-screen-reader-support-updated/). +This last point is key — To use a screen reader in the first place, your operating system needs to run browsers that have the necessary accessibility APIs in place to expose the information screen readers need to do their job. Most popular OSes have one or two browsers in place that screen readers can work with. Next, you need to worry about whether the browsers in question support ARIA features and expose them via their APIs, but also whether screen readers recognize that information and present it to their users in a useful way. diff --git a/files/en-us/learn_web_development/howto/design_and_accessibility/design_for_all_types_of_users/index.md b/files/en-us/learn_web_development/howto/design_and_accessibility/design_for_all_types_of_users/index.md index 5fc78d48f6341fb..c0386f0e05c6c19 100644 --- a/files/en-us/learn_web_development/howto/design_and_accessibility/design_for_all_types_of_users/index.md +++ b/files/en-us/learn_web_development/howto/design_and_accessibility/design_for_all_types_of_users/index.md @@ -41,7 +41,7 @@ To keep your text readable, use a text color that contrasts well with the backgr The {{Glossary("W3C")}} defines a good color mix with an algorithm that calculates luminosity ratio between foreground and background. The calculation may seem pretty complicated, but we can rely on tools to do the job for us. -Let's download and install the Paciello Group's [Color Contrast Analyser](https://vispero.com/color-contrast-checker/). +Let's download and install Vispero's [Color Contrast Analyser](https://vispero.com/lp/color-contrast-checker/). > [!NOTE] > Alternatively you can find a number of contrast checkers online, such as WebAIM's [Color Contrast Checker](https://webaim.org/resources/contrastchecker/). We suggest a local checker because it comes packaged with an on-screen color picker to find out a color value. diff --git a/files/en-us/mozilla/firefox/releases/149/index.md b/files/en-us/mozilla/firefox/releases/149/index.md index 39c74a9ca6d33c5..396fb5942763839 100644 --- a/files/en-us/mozilla/firefox/releases/149/index.md +++ b/files/en-us/mozilla/firefox/releases/149/index.md @@ -94,7 +94,7 @@ Firefox 149 is the current [Beta version of Firefox](https://www.firefox.com/en- -The ability of extensions to dynamically execute code in their `moz-extension:` documents with {{WebExtAPIRef("tabs.executeScript")}}, {{WebExtAPIRef("tabs.insertCSS")}}, {{WebExtAPIRef("tabs.removeCSS")}}, {{WebExtAPIRef("scripting.executeScript")}}, {{WebExtAPIRef("scripting.insertCSS")}}, and {{WebExtAPIRef("scripting.removeCSS")}} is deprecated. The feature is no longer available in Firefox Nightly, and the beta and release versions of Firefox provide a warning in the tab's console. This restriction will apply to all versions of Firefox 152 and later. As an alternative, an extension can run code in its documents dynamically by registering a {{WebExtAPIRef("runtime.onMessage")}} listener in the document's script, then sending a message to trigger execution of the required code.({{bug(2011234)}}) +The ability of extensions to dynamically execute code in their `moz-extension:` documents with {{WebExtAPIRef("tabs.executeScript")}}, {{WebExtAPIRef("tabs.insertCSS")}}, {{WebExtAPIRef("tabs.removeCSS")}}, {{WebExtAPIRef("scripting.executeScript")}}, {{WebExtAPIRef("scripting.insertCSS")}}, and {{WebExtAPIRef("scripting.removeCSS")}} is deprecated. The feature is no longer available in Firefox Nightly, and the beta and release versions of Firefox provide a warning in the tab's console. This restriction will apply to all versions of Firefox 152 and later. As an alternative, an extension can run code in its documents dynamically by registering a {{WebExtAPIRef("runtime.onMessage")}} listener in the document's script, then sending a message to trigger execution of the required code.([Firefox bug 2011234](https://bugzil.la/2011234)) diff --git a/files/en-us/web/accessibility/aria/guides/live_regions/index.md b/files/en-us/web/accessibility/aria/guides/live_regions/index.md index 2356a39a80fdc0f..cceaefba093e105 100644 --- a/files/en-us/web/accessibility/aria/guides/live_regions/index.md +++ b/files/en-us/web/accessibility/aria/guides/live_regions/index.md @@ -164,7 +164,7 @@ Elements with the following [`role="…"`](/en-US/docs/Web/Accessibility/ARIA/Re ## Additional live region attributes -Live Regions are well supported. The Paciello Group, in 2014, posted [information about the state of the support of Live Regions](https://www.tpgi.com/screen-reader-support-aria-live-regions/). Paul J. Adam has researched [the support of `aria-atomic` and `aria-relevant`](https://pauljadam.com/demos/aria-atomic-relevant.html) in particular. +Live Regions are well supported. Vispero, in 2014, posted [information about the state of the support of Live Regions](https://vispero.com/resources/screen-reader-support-aria-live-regions/). Paul J. Adam has researched [the support of `aria-atomic` and `aria-relevant`](https://pauljadam.com/demos/aria-atomic-relevant.html) in particular. 1. **`aria-atomic`**: The `aria-atomic=BOOLEAN` is used to set whether or not the screen reader should always present the live region as a whole, even if only part of the region changes. The possible settings are: `false` or `true`. The default setting is `false`. 2. [**`aria-relevant`**](/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-relevant) diff --git a/files/en-us/web/accessibility/aria/reference/roles/alert_role/index.md b/files/en-us/web/accessibility/aria/reference/roles/alert_role/index.md index f0816523de5c2a5..62b336ec9a989c0 100644 --- a/files/en-us/web/accessibility/aria/reference/roles/alert_role/index.md +++ b/files/en-us/web/accessibility/aria/reference/roles/alert_role/index.md @@ -121,5 +121,5 @@ document.getElementById("hiddenAlertContainer").textContent = - [ARIA: `timer` role](/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/timer_role) - [ARIA: `alertdialog` role](/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/alertdialog_role) - [ARIA: live regions](/en-US/docs/Web/Accessibility/ARIA/Guides/Live_regions) -- [ARIA alert support - The Paciello Group](https://www.tpgi.com/aria-alert-support/) +- [ARIA alert support - Vispero](https://vispero.com/resources/aria-alert-support/) - [ARIA Practices alert example](https://www.w3.org/WAI/ARIA/apg/patterns/alert/examples/alert/) diff --git a/files/en-us/web/accessibility/aria/reference/roles/complementary_role/index.md b/files/en-us/web/accessibility/aria/reference/roles/complementary_role/index.md index f4a7c58340b715a..f36dd885ae51cd7 100644 --- a/files/en-us/web/accessibility/aria/reference/roles/complementary_role/index.md +++ b/files/en-us/web/accessibility/aria/reference/roles/complementary_role/index.md @@ -93,6 +93,5 @@ Certain technologies such as browser extensions can generate lists of all landma - [\