diff --git a/accessibility-checker-engine/help-v4/en-US/a_target_warning.html b/accessibility-checker-engine/help-v4/en-US/a_target_warning.html index 66fe073ba..6be908f45 100644 --- a/accessibility-checker-engine/help-v4/en-US/a_target_warning.html +++ b/accessibility-checker-engine/help-v4/en-US/a_target_warning.html @@ -54,7 +54,7 @@

### What to do * Include a warning in the label advising the user that the link opens in a new window -* **Or**, use CSS to provide a warning before opening a new window (see Example 2 in [G201](https://www.w3.org/WAI/WCAG22/Techniques/general/G201)) +* **Or**, use CSS to provide a warning before opening a new window (see Example 2 in [WCAG technique G201](https://www.w3.org/WAI/WCAG22/Techniques/general/G201)) diff --git a/accessibility-checker-engine/help-v4/en-US/a_text_purpose.html b/accessibility-checker-engine/help-v4/en-US/a_text_purpose.html index 89fae66f9..db671ef74 100644 --- a/accessibility-checker-engine/help-v4/en-US/a_text_purpose.html +++ b/accessibility-checker-engine/help-v4/en-US/a_text_purpose.html @@ -53,8 +53,8 @@

### What to do * Ideally, add unique link text as the content of the hyperlink that describes the purpose of the hyperlink -* **Or**, if it’s not possible to use unique link text (e.g. multiple ‘Read more..’ links for different topics), use the `aria-labelledby` attribute to point to text visible on the page that identifies the link purpose. -The following example shows how the `aria-labelledby` provides additional context by adding the text 'Breaking News' from the header to the link text 'Read more..': +* **Or**, if it’s not possible to use unique link text (e.g., multiple ‘Read more.’ links for different topics), use the `aria-labelledby` attribute to point to text visible on the page that identifies the link purpose. +The following example shows how the `aria-labelledby` provides additional context by adding the text 'Breaking News' from the header to the link text 'Read more.': ### Example @@ -62,7 +62,7 @@

Breaking News

The central bank cut interest rates by half a - percentage to protect economy. + percentage to protect the economy. The `tabindex` value defines the order (sequence) in which elements will receive focus when users navigate via the keyboard: * `"-1"` will remove the element from the tab sequence (ignored during tabbing) but may remain focusable * `"0"` will be handled in the order (tab sequence) as it appears in the DOM source code order -* `">0"` (positive number) [creates a relative ordering](https://html.spec.whatwg.org/multipage/interaction.html#the-tabindex-attribute) that starts from the element(s) with the lowest value (e.g. 1) and then proceeds to the element(s) with the next higher value +* `">0"` (positive number) [creates a relative ordering](https://html.spec.whatwg.org/multipage/interaction.html#the-tabindex-attribute) that starts from the element(s) with the lowest value (e.g., 1) and then proceeds to the element(s) with the next higher value

diff --git a/accessibility-checker-engine/help-v4/en-US/aria_content_in_landmark.html b/accessibility-checker-engine/help-v4/en-US/aria_content_in_landmark.html index d22218fd9..ee6cde7e5 100644 --- a/accessibility-checker-engine/help-v4/en-US/aria_content_in_landmark.html +++ b/accessibility-checker-engine/help-v4/en-US/aria_content_in_landmark.html @@ -52,8 +52,8 @@

### What to do -* Enclose the content within an HTML5 sectioning element with an implicit landmark role (e.g. `
Content
`); -* **Or**, use the `"role"` attribute on an enclosing element to specify an appropriate ARIA landmark value (e.g. `
...
`). +* Enclose the content within an HTML5 sectioning element with an implicit landmark role (e.g., `
Content
`); +* **Or**, use the `"role"` attribute on an enclosing element to specify an appropriate ARIA landmark value (e.g., `
...
`). diff --git a/accessibility-checker-engine/help-v4/en-US/aria_main_label_unique.html b/accessibility-checker-engine/help-v4/en-US/aria_main_label_unique.html index 6e491120c..26a6aa774 100644 --- a/accessibility-checker-engine/help-v4/en-US/aria_main_label_unique.html +++ b/accessibility-checker-engine/help-v4/en-US/aria_main_label_unique.html @@ -45,7 +45,7 @@

### Why is this important? -The `
` element has an implicit landmark role of `"main"` that represents the central topic of the document. This provides a non-obtrusive alternative for a “skip to main content” link. It is possible, but not desirable, to have more than one element with a `"main"` role, for example through DOM nesting (e.g. a document within a document) or by use of the `aria-owns` attribute. In this situation, an associated unique label that describes each area of main content is needed to allow users of assistive technologies to understand the purpose of each main area, and navigate to them. Ideally the author SHOULD mark no more than one element with the `"main"` role. +The `
` element has an implicit landmark role of `"main"` that represents the central topic of the document. This provides a non-obtrusive alternative for a “skip to main content” link. It is possible, but not desirable, to have more than one element with a `"main"` role, for example through DOM nesting (e.g., a document within a document) or by use of the `aria-owns` attribute. In this situation, an associated unique label that describes each area of main content is needed to allow users of assistive technologies to understand the purpose of each main area, and navigate to them. Ideally the author SHOULD mark no more than one element with the `"main"` role.
diff --git a/accessibility-checker-engine/help-v4/en-US/aria_widget_labelled.html b/accessibility-checker-engine/help-v4/en-US/aria_widget_labelled.html index 9227e367c..066f3c1bf 100644 --- a/accessibility-checker-engine/help-v4/en-US/aria_widget_labelled.html +++ b/accessibility-checker-engine/help-v4/en-US/aria_widget_labelled.html @@ -54,7 +54,7 @@

* Use the `aria-labelledby` attribute to reference existing visible text on the page that can clearly identify the purpose of the component; * **Or**, use the `aria-label` attribute with a short description as its value that can clearly identify the purpose of the component when a visual label is not available; * **Or**, use the `title` attribute to provide a name when the design cannot accommodate a visual label; -* **Or**, if the element's role allows it to derive a label from its content, provide the label text as the inner content of the element (e.g. ``). +* **Or**, if the element's role allows it to derive a label from its content, provide the label text as the inner content of the element (e.g., ``). The following code snippet shows a tree widget labelled with an `aria-labelledby` attribute to reference the heading text: diff --git a/accessibility-checker-engine/help-v4/en-US/element_accesskey_labelled.html b/accessibility-checker-engine/help-v4/en-US/element_accesskey_labelled.html index 750410e6f..cae8dd9a5 100644 --- a/accessibility-checker-engine/help-v4/en-US/element_accesskey_labelled.html +++ b/accessibility-checker-engine/help-v4/en-US/element_accesskey_labelled.html @@ -52,10 +52,10 @@

### What to do - * Provide a label using a `title` attribute (e.g. `
Activities`); + * Provide a label using a `title` attribute (e.g., `Activities`); * **Or**, use `