Skip to content

Commit 3d939c2

Browse files
authored
Merge pull request #2 from ember-learn/feature/website-accessibility
Feature/website accessibility
2 parents a010a77 + 807eba1 commit 3d939c2

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

03_website_sitemap.md

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ As we move to use a consolidated Ember app for the website, we intend for the UR
1414
| └── Learn Ember
1515
| ├── Quick Start
1616
| └── Tutorials
17+
| ├── 101 (quick start)
18+
| ├── 201 (rolodex)
19+
| └── 301 (super rentals)
1720
├── RELEASES
1821
| ├── Channels
1922
| | ├── stable

04_website_accessibility.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Website - Accessibility
2+
3+
EmberJS is is committed to ensuring that its website is accessible to people with disabilities. All the pages on our website will meet W3C WAI’s Web Content Accessibility Guidelines 2.1, Level AA conformance. Please report any issues at https://github.com/ember-learn/ember-website/issues.
4+
5+
## Design
6+
7+
These are the WCAG conformance criteria that will most likely apply to the Ember.js website.
8+
<!--alex ignore Color-->
9+
- 1.4.1 [Use of Color](https://www.w3.org/WAI/WCAG21/quickref/?showtechniques=141#distinguishable)
10+
- 1.4.3 [Contrast (Minimum)](https://www.w3.org/WAI/WCAG21/quickref/?showtechniques=141#contrast-minimum)
11+
- 1.4.4 [Resize Text](https://www.w3.org/WAI/WCAG21/quickref/?showtechniques=141%2C143%2C144#resize-text)
12+
- designs should consider that elements will be coded to support zoom- what should the design look like when a user zooms in (on any device)?
13+
- Note that the current success criteria is to support zoom between 100%-200%. The newest edition of WCAG success criteria indicates support for zoom from 100%-400%.
14+
- 1.4.5 [Images of Text](https://www.w3.org/WAI/WCAG21/quickref/?showtechniques=141%2C143%2C144%2C145#images-of-text) (TL;DR- there shouldn’t be text on a website that is an image. Use text).
15+
- 1.4.8 [Visual Presentation](https://www.w3.org/WAI/WCAG21/quickref/?showtechniques=141%2C143%2C144%2C145%2C146#visual-presentation) (AAA so optional, but some are good practice so worth reviewing)
16+
- 1.4.10 [Reflow](https://www.w3.org/WAI/WCAG21/quickref/?showtechniques=141%2C143%2C144%2C145%2C146#reflow)
17+
- 1.4.13 [Content on Hover or Focus](https://www.w3.org/WAI/WCAG21/quickref/?showtechniques=141%2C143%2C144%2C145%2C146%2C148%2C23%2C246%2C2410%2C323#content-on-hover-or-focus)
18+
- 2.3 [Seizures and Physical Reactions]() (related to anything that is animated)
19+
- 2.4.6 [Headings and Labels](https://www.w3.org/WAI/WCAG21/quickref/?showtechniques=141%2C143%2C144%2C145%2C146%2C148%2C23#seizures-and-physical-reactions) (designers: make sure everything has a heading, or provide a machine-readable heading for developers to implement if visually hidden)
20+
- 3.2.3 [Consistent Navigation](https://www.w3.org/WAI/WCAG21/quickref/?showtechniques=141%2C143%2C144%2C145%2C146%2C148%2C23%2C246#consistent-navigation)
21+
22+
## Development
23+
24+
(WIP)

0 commit comments

Comments
 (0)