Web Accessibility Flashcards

1
Q

Who published the Web Content Accessibility Guidelines (WCAG)?

A

the World Wide Web Consortium (W3C)

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

What does WCAG stand for?

A

Web Content Accessibility Guidelines (WCAG)

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

What does ATAG stand for?

A

Authoring Tool Accessibility Guidelines

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

Design consideration for blindness: Why should all web content be presented in text or via a text equivalent (alt text)?

A

Screen readers cannot read non-text content (e.g. images) directly but they can read alt text that you provide.

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

Design consideration for blindness: Why should information not be conveyed by visual attributes alone? (e.g. color, spatial location, thickness of text)

A

Not all visual information is available to screen readers.

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

Design consideration for blindness: Why should ALL functionality be available using the keyboard?

A

It is more effective for them to navigate by the keyboard.

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

Design consideration for blindness: Why should all web content use markup with good structure and semantics (headings, landmarks, tables, lists, etc.).

A

Screen reader users often pull up lists of headings, landmarks, and other semantic elements to help them understand what is on the page. They can also navigate by these elements

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

Design consideration for blindness: Why should all custom controls (expand/collapse buttons) have the correct correct name/label, role, and value, and must change value when appropriate (aria-expanded=”false” changes to aria-expanded=”true”)?

A

Unlike native HTML elements, custom controls have no semantic parts natively, so screen readers can’t tell users what the widget is and can’t update users on the properties of the widget unless you supply that information via ARIA names, roles, states, and properties.

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