Web Accessibility Flashcards

1
Q

Page Language: The primary language of the page MUST be identified accurately, using a standard language code, on the element

A

lang=”en” or lang=”fr”>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Language of Parts: Inline language changes MUST be identified with a valid

A

lang attribute.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Two-character language code: The language code SHOULD be designated with a standard two-character ISO 639-1 code (e.g. lang=”en”) to achieve maximum support across screen readers and browsers, though other codes

A

(e.g. lang=”en-us”) are technically allowable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Bypass blocks:

A

Screen readers allow users to navigate by headings, so headings are an effective way to bypass blocks of content, as required by WCAG 2.4.1. Note: Headings are not absolutely required by WCAG to pass 2.4.1, but are highly recommended, along with landmarks and skip links.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Accurate, informative section labels: Headings MUST be accurate and informative, as labels for the sections of text they describe.

A

Brevity: Heading text SHOULD be concise and relatively brief.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Use real headings: Text that acts as a heading visually or structurally SHOULD be designated as a true heading (<h1>, </h1><h2>, etc.) in the markup.</h2>

A

Heading Markup for Headings Only: Text that does not act as a heading visually or structurally SHOULD NOT be marked as a heading.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Content outline: Headings SHOULD convey a clear and accurate structural outline of the sections of content of a web page.

A

Consecutive levels: Headings SHOULD NOT skip hierarchical levels.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Bypass blocks: Screen readers allow users to navigate by landmarks, so landmarks are an effective way to bypass blocks of content, as required by WCAG 2.4.1. Other methods may be used as well as — or instead of — landmarks, such as skip links, headings, expand/collapse regions, etc.

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Page layout groupings: Landmarks SHOULD be used to accurately designate pre-defined parts of the layout (e.g. the header, navigation, main content, and footer).

A

Content within landmarks: All text SHOULD be contained within a landmark region.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Landmark names: Multiple instances of the same type of landmark SHOULD be distinguishable by different discernible names (using aria-label or aria-labelledby).

A

Only one instance of some landmarks: A page SHOULD NOT contain more than one instance of each of the following landmarks: header/banner, main, and footer/contentinfo.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Markup: Landmarks MAY be designated with either HTML tags or their equivalent ARIA roles (e.g. or role=”banner”, or role=”navigation”, or role=”main”, or role=”contentinfo”, etc.).

A

List markup: Lists MUST be constructed using the appropriate semantic markup (i.e. <ul> or </ul><ol> with <li> child elements, or <dl> with <dt> and </dt><dd> child elements).</dd></dl></li></ol>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Header tag: Table headers MUST be designated with .

A

Meaningful header: Data table header text MUST accurately describe the category of the corresponding data cells.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Header and data cell associations: Table data cells MUST be associated with their corresponding header cells. Note: Use of scope ( and ) is highly recommended, though not always necessary (i.e. if all cells in the first row are marked as without scope, most modern screen readers will infer that the scope is the column below each header cell).

A

Group header associations: Table data group headers (if any) MUST be associated with their corresponding data cell groups (e.g. via scope=”rowgroup” or scope=”colgroup”).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Complex header associations: Header/data associations that cannot be designated with and scope MUST be designated with the headers and id attributes.

A

Nested or split tables: Data table headers and data associations MUST NOT be referenced across nested, merged, or separate tables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Tables: Tabular data SHOULD be represented in a . Note: Even if the data are not represented in a table, WCAG 1.3.1 requires the data to be associated with their labels.

A

Caption: Data tables SHOULD have a programmatically-associated or name (e.g. via aria-label or aria-labelledby). Note: In most circumstances, is preferred, because it is the native method of giving a name to a table, and the is visible and available to all users by default.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Meaningful caption: The name or of a data table SHOULD describe the identity or purpose of the table accurately, meaningfully, and succinctly.

A

Unique caption: The name or of each data table SHOULD be unique within the context of other tables on the same page.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Avoid layout tables: Tables SHOULD NOT be used for the purpose of purely visual (non-data) layout.

A

Avoid headers in layout tables: Layout tables MUST NOT contain headers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Meaningful iframe title attribute: The iframe title attribute (on the parent page) MUST be accurate and descriptive.

A

Unique title attributes: Every iframe SHOULD have a unique title (in the context of the page).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Hidden or empty iframes: Hidden frames or frames that do not convey content to users SHOULD be hidden from assistive technologies using aria-hidden=”true”.

A

Page title of embedded page: The source page of an iframe (the page embedded in the iframe) MUST have a valid, meaningful .

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Unique IDs: IDs MUST be unique within a web page.

A

Unique Names: The “accessible names” of elements, when provided, of block level elements (e.g. landmarks, tables, iframes, etc.) SHOULD be unique within a web page.
Note: The accessible name is determined by attributes or elements such as aria-label, aria-labelledby, alt, , etc. Refer to the Accessible Name and Description Computation for details.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Closing Tags: Elements must not be missing closing tags. DIV or P element must not be nested within a LABEL element. Element must not contain duplicate attributes.
Required WCAG 4.1.1

A

Parent-Child Relationships: Markup MUST adhere to required parent-child relationships of elements and attributes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Parent-Child Relationships: Markup MUST adhere to required parent-child relationships of elements and attributes.
Required WCAG 4.1.1

A

ARIA relationships: ARIA relationships (e.g. parent-child, aria-owns, etc.) SHOULD adhere to WAI-ARIA Authoring Practices
Required WCAG 4.1.1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Deprecated Markup should not be used.

Best practice

A

Emphasis: Critical emphasis in the text SHOULD be conveyed in a text-based format, not visual styling alone.
Best practice

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

Highlighting markup: Highlighted text SHOULD be marked with the element.
Best practice

A

Text-based highlighting: Critical highlighted text SHOULD be supplemented with a text-based method to convey the meaning of the highlighting.
Best practice

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

Blockquote: The <blockquote> element SHOULD be used to designate long (block level) quotations.
Best practice</blockquote>

A

Indentation: The <blockquote> element SHOULD NOT be used for visual styling (indentation) alone.
Best practice</blockquote>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

Inline quotations: The element (for inline quotations) SHOULD NOT be used as the only way to designate quotations, due to poor support in screen readers and some browsers.
Best practice

A

Strikethrough markup: Strikethrough text SHOULD be marked with the <del> element.
Best practice</del>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

Strikethrough supplemental text: Critical strikethrough text MUST be supplemented with a text-based method to convey the meaning of the strikethrough.
Best practice

A

Insert markup: Text designated for insertion SHOULD be marked with the <ins> element.
Best practice</ins>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

Insert supplemental text: Critical text designated for insertion MUST be supplemented with a text-based method to convey the meaning of the insertion.
Best practice

A

Link markup: Links MUST be semantically designated as such.
Note: Ideally this means using an <a> element with a valid href value. In rare problematic cases, setting role=”link” (and adding all other aspects of link functionality) may be acceptable.
Required WCAG 4.1.2</a>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

Links versus buttons: Links SHOULD be used only for actions that take the user to other locations and SHOULD NOT be used for button-like functionality.
Note 1: “Other locations” means other web pages, or to other locations in the same web page. Typically, the URL will change after activating a link.
Note 2: “Button-like functionality” means scripted features, including submitting forms.
Best practice

A

Discernible text: A link MUST have programmatically discernible text, as determined by the accessible name calculation algorithm.
Required WCAG 4.1.2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

Distinguishable link purpose: The purpose of each link MUST be understandable and distinguishable from other links on the same page, either from the link text alone (ideally), or from the immediate surrounding context of the link.
Required WCAG 2.4.4

A

Avoid “link” (or similar) in the link text: The link text SHOULD NOT state its semantic role (e.g. don’t say “link to…”), because screen readers already state the role before reading the link text.
Best practice

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

Consistent link text across pages: Links to the same destinations MUST be consistently identified with the same (or very similar) link text across all pages of the site.
Required WCAG 3.2.4

A

Links opening in new tab or window: A link that opens in a new window or tab SHOULD indicate that it opens in a new window or tab.
Best practice

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

Links to non-HTML files: A link to a file or destination in a non-HTML format (e.g. MS Word, PDF, plain text, etc.) SHOULD indicate the type of file or destination.
Best practice

A

Links to external sites: A link to an external site MAY indicate that it leads to an external site.
Best practice

33
Q

Keyboard-focusable: Links MUST be keyboard-focusable.

Required WCAG 2.1.1

A

Keyboard activation: Links MUST activate with the enter/return key.
Required WCAG 2.1.1

34
Q

Focus order: The navigation order of focusable elements (links, form elements, etc.) MUST be logical and intuitive.
Required WCAG 2.4.3

A

Tabindex: The tabindex attribute SHOULD NOT be used with positive values to customize the tab order (e.g. don’t use tabindex=”1”).
Best practice

35
Q

Links visually distinguishable from non-links: Links MUST be visually distinguishable from surrounding non-link text.
Required WCAG 1.4.1

A

Color as a way to visually distinguish links: Color alone MUST NOT be used as the only way to distinguish links from surrounding text unless the color contrast between the link and the surrounding text is at least 3:1 and an additional differentiation (e.g. underline, outline, etc.) is provided when the link is hovered or receives focus.
Required WCAG 1.4.1

36
Q

Link contrast: Links MUST have a contrast ratio of 4.5:1 (for small text) or 3:1 (for large text) against their background.
Required WCAG 1.4.3

A

Target size: Links SHOULD measure a minimum of 44px by 44px. Note: Inline links in paragraphs or blocks of text MAY be smaller.
Best practice

37
Q

Focus indicator: All links MUST show a visual focus indicator when in focus.
Required WCAG 2.4.7

A

Enhanced focus indicator: Links MAY have enhanced visual focus indicator styles.
Best practice

38
Q

Enhanced focus indicator: Links MAY have enhanced visual focus indicator styles.
Best practice

A

Small focus indicators: The contrast of all small visual focus indicators (smaller than 3px by 3px) against the background SHOULD be at least 4.5 to 1.
Best practice

39
Q

Large focus indicators: The contrast of all large visual focus indicators (at least 3px by 3px) against the background SHOULD be at least 3 to 1.
Best practice

A

Enhanced hover indicator: Links SHOULD have enhanced visual hover indicator styles.
Best practice

40
Q

Hover cursor style: On hover over a link, the mouse cursor SHOULD appear as the pointer style, to provide a visual confirmation of the link role.
Note: On most browsers, the pointer style is represented by an icon of a hand with the index finger pointing forward.
Best practice

A

Skip navigation: A keyboard-functional “skip” link SHOULD be provided to allow keyboard users to navigate directly to the main content.
Note 1: The “skip” link SHOULD be the first focusable element on the page.
Note 2: The “skip” link MUST be either visible at all times or visible on keyboard focus.
Note 3: “Skip” links, landmarks (e.g. , , etc.), and page table of contents are each valid and sufficient methods to satisfy the WCAG 2.4.1 requirement to allow users to bypass blocks of content. Ideally the design would include all of these techniques, where appropriate.
Required WCAG 2.4.1 (This technique is one way to satisfy this requirement)

41
Q

Page table of contents: A table of contents for the page MAY be included at the top of the content or in the header.
Note: Ideally, the links in the table of contents SHOULD correspond to the heading structure in the page content.
Required WCAG 2.4.1 (This technique is one way to satisfy this requirement)

A

Consistent Navigation Patterns: Navigation patterns that are repeated on web pages MUST be presented in the same relative order each time they appear and MUST NOT change order when navigating through the site.
Required WCAG 3.2.3

42
Q

Consistent Identification: Elements such as labels, names, and text alternatives for content that have the same functionality across multiple screens must be consistently identified.
Required WCAG 3.2.4

A

Multiple ways: Multiple ways must be available to find other web pages on the site — at least two of: a list of related pages, table of contents, site map, site search, or list of all available web pages.
Required WCAG 2.4.5

43
Q

Markup: A navigation list SHOULD be designated with the element or role=”navigation”. See also landmarks.
Best practice

A

Visible “you are here” indicator: A navigation list SHOULD include a visible method of informing users which page within the navigation list is the currently active/visible page.
Best practice

44
Q

Non-visual “you are here” indicator: A navigation list SHOULD include a method available to assistive technologies of informing non-visual users which page within the navigation list is the currently active/visible page.
Best practice

A

Bypass blocks: A method MUST exist to bypass repeated blocks of content. Possible techniques applicable to almost all pages include skip links, headings, and landmarks. It’s best to use all of these techniques, if possible. Other techniques include page-specific table of contents links and expandable/collapsible regions.
Required WCAG 2.4.1

45
Q

Reading Order: The reading and navigation order MUST be logical and intuitive.
Required WCAG 1.3.2

A

Focus Order: The navigation order of focusable elements MUST be logical and intuitive.
Required WCAG 2.4.3

46
Q

Provide a skip link: A keyboard-functional “skip” link SHOULD be provided to allow keyboard users to navigate directly to the main content.
Best practice

A

First focusable element: The “skip link” SHOULD be the first focusable element on the page.
Best practice

47
Q

Skip link visibility: A skip link MUST be either visible at all times or visible on keyboard focus.
Best practice

A

Table of contents links: A table of contents for the page MAY be included at the top of the content or in the header.
Best practice

48
Q

Reflect the heading structure: If a table of contents for the page is included, it SHOULD reflect the heading structure of the page.
Best practice

A

Visual “you are here” indicator: A paginated view SHOULD include a visible method of informing users which view is the currently active/visible view.
Best practice

49
Q

Non-visual “you are here” indicator: A paginated view SHOULD include a method available to assistive technologies of informing non-visual users which view is the currently active/visible view.
Best practice

A

Single-key shortcuts: If a single-character-key shortcut exists, then at least one of the following MUST be true: single-character-key shortcuts can be turned off, remapped, or are only active when the relevant user interface component is in focus.
Required WCAG 2.1.4 (WCAG 2.1)

50
Q

Reading Order: The reading order MUST be logical and intuitive. Note: The default reading order is determined by the order of the elements in the DOM.
Required WCAG 1.3.2

A

Focus Order: The navigation order of focusable elements MUST be logical and intuitive. Note 1: Focusable elements include links, form inputs and controls, buttons, and any element with a tabindex value of 0 or greater. Note 2: The default reading order is determined by the order of the focusable elements in the DOM. Note 3: Use the tab key to navigate forward through focusable elements, and shift + tab to navigate backward.
Required WCAG 2.4.3

51
Q

Positive values: A tabindex of positive values (e.g. tabindex=”1”, tabindex=”2”, etc.) SHOULD NOT be used, because the result is almost always an illogical reading and/or tab order.
Best practice

A

Zero: Use tabindex=”0” to make a custom widget or control focusable, if it is not already focusable. Note: Use natively focusable elements whenever possible (e.g. links, form inputs and controls, buttons), rather than custom controls, for simplicity in markup and implementation.
Best practice

52
Q

Negative 1: Use tabindex=”-1” to allow JavaScript to send the focus to an element, without putting it in the focus order.
Best practice

A

Alternative text: The image MUST have alternative text. Refer to the techniques for various image types: • images using <img></img> • active images • form input images • SVG using <img></img> • SVG using • HTML5 canvas • icon fonts
Required WCAG 1.1.1

53
Q

Meaningful description: Alternative text MUST be meaningful (accurately conveying the purpose of the image, and the author’s intent in a way that is useful to those who cannot see the image). Note 1: Image links SHOULD describe the link destination. Note 2: Button/control links SHOULD describe the purpose and/or resulting action of the button or control.
Required WCAG 1.1.1

A

Concise: The length of the alternative text for informative images SHOULD be concise (no more than about 250 characters).
Best practice

54
Q

Avoid restating that the element is an image: Alternative text SHOULD NOT include words that identify the element as a graphic or image (e.g. avoid phrases like “graphic of,” or “image of,” etc.), because screen readers already state the role (e.g. by saying “graphic” then reading the alternative text).
Best practice

A

Unessential Images: Images that do not convey content, are decorative, or are redundant to content that is already conveyed in text SHOULD be given null (empty) alternative text (alt=””), ARIA role=”presentation”, or implemented as CSS backgrounds.
Best practice

55
Q

Complex Images: Complex images MUST be briefly described using alt text AND MUST have a more complete extended description. Note: It is not “wrong” to provide descriptive alternative text in these instances, but it is highly discouraged if the image is truly unessential.
Required WCAG 1.1.1

A

Informative background images: If a background image conveys information, alternative text MUST be provided (e.g. via regular visible text, by adding role=”image” and aria-label, or by other means).
Required WCAG 1.1.1

56
Q

Active background images: If a background image is the only “content” in an active element (e.g. a link, button, or control), the active element MUST have an accessible name (e.g. via aria-label or similar).
Required WCAG 1.1.1

A

Color contrast of small text: Small text (under 18 point regular font or 14 point bold font) MUST have a contrast ratio of at least 4.5 to 1 with the background.
Required WCAG 1.4.3

57
Q

Color contrast of large text: Large text (at or over 18 point or 14 point bold) MUST have a contrast ratio of at least 3 to 1 with the background.
Required WCAG 1.4.3

A

Unessential background images: Alternative text SHOULD NOT be provided for unessential background images.
Best practice

58
Q

No Images of Text: An image MUST NOT include informative text if an equivalent visual presentation of the text can be rendered using real text (unless the text is essential — such as a logo — or the font, size, color, and background are customizable.).
Required WCAG 1.4.5

A

Color contrast of small text: Small text (under 18 point regular font or 14 point bold font) MUST have a contrast ratio of at least 4.5 to 1 with the background.
Required WCAG 1.4.3

59
Q

Color contrast of large text: Large text (at or over 18 point or 14 point bold) MUST have a contrast ratio of at least 3 to 1 with the background.
Required WCAG 1.4.3

A

Alternative text: Image CAPTCHA elements MUST have alternative text describing the purpose of the image.
Required WCAG 1.1.1

60
Q

Sensory alternatives: Image CAPTCHA elements MUST be supplemented with at least one auditory alternative method.
Required WCAG 1.1.1

A

Deafblind access: At least one text-based alternative SHOULD be provided that allows users who are both deaf and blind to pass the CAPTCHA. Note: Deafblind users typically use screen readers to convert text to braille, using a refreshable braille device.
Best practice

61
Q

Use of color: Any information conveyed by color MUST be accompanied by a programmatically-discernible text alternative.
Required WCAG 1.4.1

A

Visible Alternative: Any information conveyed by color MUST be accompanied by a visible alternative (text, image, etc.) that does not depend on color for meaning.
Required WCAG 1.4.1

62
Q

Large Text Contrast: Large text (at or over 18 point or 14 point bold) MUST have a contrast ratio of at least 3 to 1 with the background.
Note: The contrast rule also applies to images of text, even though images of text are discouraged.
Required WCAG 1.4.3

A

UI Component Contrast: The contrast of UI control boundaries compared to adjacent areas MUST be at least 3 to 1 to distinguish the UI control from the adjacent areas.
Required WCAG 1.4.11 (WCAG 2.1)

63
Q

Visual Focus Indicator Contrast: The contrast of all visual focus indicators against the background MUST be at least 3 to 1.
Required WCAG 1.4.11 (WCAG 2.1)

A

Retain Visible Information: Web content SHOULD retain all essential visual information in Windows High Contrast Mode.
Best practice

64
Q

Don’t Override: The design SHOULD NOT override Windows High Contrast Mode.
Best practice

A

Resize Text 200%: The page SHOULD be functional when only the text is magnified to 200% of its initial size.
Required WCAG 1.4.4

65
Q

Mobile Zoom: The page MUST allow users to zoom in on mobile devices (The following is NOT allowed: )
Required WCAG 1.4.4

A

One Scroll Direction Only: Content MUST NOT require scrolling in two directions (both vertically and horizontally) — even when the viewport is set or zoomed to 320 CSS pixels wide (for vertically-scrolling content) or 256 CSS pixels high (for horizontally-scrolling content) — unless both scrolling directions are essential to the usage or meaning of the content.
Required WCAG 1.4.10 (WCAG 2.1)

66
Q

Full Functionality with Altered Text Styles: In content implemented using markup languages that support the following text style properties, no loss of content or functionality occurs by setting all of the following and by changing no other style property:
• Line height (line spacing) to at least 1.5 times the font size
• Spacing following paragraphs to at least 2 times the font size
• Letter spacing (tracking) to at least 0.12 times the font size
• Word spacing to at least 0.16 times the font size.

Required WCAG 1.4.12 (WCAG 2.1)

A

Line Justification: Text SHOULD NOT be full justified.

Best practice

67
Q

Column Width: The number of characters or glyphs per line in any section or column of text SHOULD NOT exceed 80 (40 characters in Chinese, Japanese, or Korean)
Best practice

A

Font Legibility: Fonts SHOULD be easily readable by sighted users.
Best practice

68
Q

Avoid CSS-Generated Content: CSS-generated content SHOULD be avoided (unless it is for presentation/decorative purposes only).
Best practice

A

Text Alternative for CSS-Generated Content: A text alternative for informative CSS-generated content MUST be provided, AND the CSS-generated text SHOULD be set to aria-hidden=”true”
Required WCAG 1.3.1

69
Q

Decorative CSS-Generated Content: Decorative or redundant CSS-generated content SHOULD be set to aria-hidden=”true”
Best practice

A

Emphasis: Critical emphasis in the text SHOULD be conveyed in a text-based format, not visual styling alone.
Best practice

70
Q

Visual Meaning: Content MUST NOT rely solely on visual characteristics such as shape, size, visual location, or orientation to convey meaning.
Required WCAG 1.3.3

A

Visual Separation of Content Blocks: Blocks of content SHOULD be visually separated and distinct from each other, via margins, padding, or other methods of achieving visual “white space.”
Best practice

71
Q

Label Proximity: Labels SHOULD be visually adjacent to their controls.
One Visual Focal Point: The layout SHOULD have only one main visual focal point.
Draw Attention: The design SHOULD draw attention to the intended visual focus point.
Best practice

A

Horizontal or Vertical Orientation: Content MUST NOT restrict its view and operation to a single display orientation, such as portrait or landscape, unless a specific display orientation is essential.
Required WCAG 1.3.4 (WCAG 2.1)

72
Q

Content that would cause scrolling in two directions (both horizontally and vertically) MUST respond to the viewport size or zoom state by resizing and/or reflowing, at viewport resolutions of up to 320px for vertically-scrolling content, and 256px for horizontally-scrolling content. • Images • Forms • Tables • Objects and Plugins • UI Components • Video
Required WCAG 1.4.10 (WCAG 2.1)

A

Simplified Content: Features of the content MAY be simplified, reduced in size, or eliminated when magnified or when viewed on small viewports.
Simplified User Interface: Features of the interface SHOULD be simplified, reduced in size, or eliminated when magnified or when viewed on small viewports.
Best practice

73
Q

Captions: Prerecorded video-only content MUST have synchronized captions.
Required WCAG 1.2.2

A

Transcript: All prerecorded audio MUST have a transcript of dialog, narration, and other meaningful sounds.
Required WCAG 1.2.1

74
Q

Autoplay: A method MUST be provided to pause, stop, or hide any media content that begins playing automatically and which lasts 5 seconds or more.
Required WCAG 1.4.2

A

Sign Language: Prerecorded audio-only content MAY include sign language interpretation.
Best practice

75
Q

Background Sounds: Background sounds in prerecorded audio-only content SHOULD be minimized (20dB lower than foreground sounds, except for occasional sounds of no more than 2 seconds) or eliminated during narration or dialog, or a method must be available to turn off background sounds.
Best practice

A

Alternative Text: Prerecorded video-only MUST include a text description.
Required WCAG 1.2.1

76
Q

Captions: Prerecorded video-only content MUST have synchronized captions.
Required WCAG 1.2.2

A

Audio Description: Prerecorded video-only content MUST include an audio description (narrated video description) of important visual content.
Required WCAG 1.2.5

77
Q

Autoplay: A method MUST be provided to pause, stop, or hide any media content that begins playing automatically and which lasts 5 seconds or more.
Required WCAG 2.2.2

A

Flashing Content: A page MUST NOT contain content that flashes more than 3 times per second unless that flashing content is sufficiently small, the flashes are of low contrast, and do not violate general flash thresholds.
Required WCAG 2.3.1

78
Q

Alternative Text: Prerecorded video-only MUST include a text description of important visual content that is not conveyed through the audio (this can be included in the transcript).
Required WCAG 1.2.1

A

Transcript: Prerecorded video-only MUST have a text transcript of dialog, narration, and other meaningful sounds.
Required WCAG 1.2.1

79
Q

Captions: Prerecorded video-only content MUST have synchronized captions.
Required WCAG 1.2.2

A

Audio Description: Prerecorded video-only content MUST include an audio description (narrated video description) of important visual content.
Required WCAG 1.2.5