diff --git a/accessibility-checker-engine/help-v4/en-US/blockquote_cite_exists.html b/accessibility-checker-engine/help-v4/en-US/blockquote_cite_exists.html index 8c09fa506..0a9a6d0cc 100644 --- a/accessibility-checker-engine/help-v4/en-US/blockquote_cite_exists.html +++ b/accessibility-checker-engine/help-v4/en-US/blockquote_cite_exists.html @@ -45,15 +45,16 @@

### Why is this important? -The HTML `
` element tells assistive technologies which content is part of a quotation or citation. Using the element for indention or formatting can mislead assistive technology users as to its meaning and purpose. +The `
` element tells assistive technologies which content is part of a quotation or citation from another source. +Using the element for indention or formatting only can mislead assistive technology users as to its meaning and purpose.
### What to do - * Verify that `
` is being used for actual quoted text; - * **Or**, do not use `
` for this content. + * Verify that `
` is being used for an actual quotation and correctly uses a `cite` attribute + * **Or**, do not use `
` and otherwise use CSS to achieve the desired visual indentation @@ -67,10 +68,11 @@

### About this requirement * [IBM 1.3.1 Info and Relationships](https://www.ibm.com/able/requirements/requirements/#1_3_1) +* [W3C HTML5 for authors - Blockquote](https://www.w3.org/TR/html5-author/the-blockquote-element.html#the-blockquote-element) ### Who does this affect? - * People using a screen reader, including blind, low vision and neurodivergent people + * People using a screen reader, including blind, low vision, and neurodivergent people * People using text only, monochrome or braille displays * People using text-based browsers (e.g., Lynx) or audio interfaces diff --git a/accessibility-checker-engine/src/v4/rules/blockquote_cite_exists.ts b/accessibility-checker-engine/src/v4/rules/blockquote_cite_exists.ts index 37760e2c7..ceacbe383 100644 --- a/accessibility-checker-engine/src/v4/rules/blockquote_cite_exists.ts +++ b/accessibility-checker-engine/src/v4/rules/blockquote_cite_exists.ts @@ -33,7 +33,7 @@ export let blockquote_cite_exists: Rule = { messages: { "en-US": { "Pass_0": "Rule Passed", - "Potential_1": "Verify that
should not be used only for quotations, not indentation", + "Potential_1": "Verify that
should have a 'cite' attribute and not be used for indentation only", "group": "Use
only for quotations, not indentation" } }, @@ -55,4 +55,4 @@ export let blockquote_cite_exists: Rule = { if (!passed) return RulePotential("Potential_1"); } -} \ No newline at end of file +}