Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 062c4b9

Browse files
committed
style-guide(add-a11y): Add accessibility quick wins
1 parent 1e908ff commit 062c4b9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+878
-1
lines changed

public/docs/_examples/style-guide/e2e-spec.ts

+110
Original file line numberDiff line numberDiff line change
@@ -206,4 +206,114 @@ describe('Style Guide', function () {
206206
let button = element(by.tagName('sg-app > toh-hero-button > button'));
207207
expect(button.getText()).toBe('OK');
208208
});
209+
210+
it('11-01', function () {
211+
browser.get('#/11-01');
212+
213+
let div = element(by.tagName('sg-app div'));
214+
expect(div.getText()).toBe('I am a page set to US English');
215+
});
216+
217+
it('11-02', function () {
218+
browser.get('#/11-02');
219+
220+
let labels = element.all(by.tagName('sg-app label'));
221+
expect(labels.get(0).getText()).toBe('Name:');
222+
expect(labels.get(1).getText()).toBe('Surname:');
223+
let inputs = element.all(by.tagName('sg-app label input'));
224+
expect(inputs.get(0).isPresent()).toBe(true);
225+
expect(inputs.get(1).isPresent()).toBe(true);
226+
});
227+
228+
it('11-03', function () {
229+
browser.get('#/11-03');
230+
231+
let button = element(by.tagName('sg-app button'));
232+
expect(button.getText()).toBe('Press me');
233+
});
234+
235+
it('11-05', function () {
236+
browser.get('#/11-05');
237+
238+
let dts = element.all(by.tagName('sg-app dt'));
239+
expect(dts.get(0).getText()).toBe('Name:');
240+
expect(dts.get(1).getText()).toBe('Power:');
241+
let dds = element.all(by.tagName('sg-app dd'));
242+
expect(dds.get(0).getText()).toBe('Windstorm');
243+
expect(dds.get(1).getText()).toBe('Air');
244+
});
245+
246+
it('11-06', function () {
247+
browser.get('#/11-06');
248+
249+
let labels = element.all(by.tagName('sg-app label'));
250+
expect(labels.get(0).getText()).toBe('Name:');
251+
expect(labels.get(1).getText()).toBe('Air');
252+
expect(labels.get(2).getText()).toBe('Fire');
253+
expect(labels.get(3).getText()).toBe('Name:');
254+
expect(labels.get(4).getText()).toBe('Air');
255+
expect(labels.get(5).getText()).toBe('Fire');
256+
let legends = element.all(by.tagName('fieldset legend'));
257+
expect(legends.get(0).getText()).toBe('Power options');
258+
expect(legends.get(1).getText()).toBe('Power options');
259+
let inputs = element.all(by.css('sg-app input:not([type="radio"])'));
260+
expect(inputs.get(0).isPresent()).toBe(true);
261+
expect(inputs.get(1).isPresent()).toBe(true);
262+
let radios = element.all(by.css('sg-app input[type="radio"]'));
263+
expect(radios.get(0).isPresent()).toBe(true);
264+
expect(radios.get(1).isPresent()).toBe(true);
265+
expect(radios.get(2).isPresent()).toBe(true);
266+
expect(radios.get(3).isPresent()).toBe(true);
267+
});
268+
269+
it('11-07', function () {
270+
browser.get('#/11-07');
271+
272+
let button = element(by.tagName('sg-app button'));
273+
expect(button.getText()).toBe('Alert User');
274+
let anchor = element(by.tagName('sg-app a'));
275+
expect(anchor.getText()).toBe('Go to Angular!');
276+
});
277+
278+
it('11-08', function () {
279+
browser.get('#/11-08');
280+
281+
let ths = element.all(by.tagName('sg-app th'));
282+
expect(ths.get(0).getText()).toBe('Hero Id');
283+
expect(ths.get(1).getText()).toBe('Hero Name');
284+
expect(ths.get(2).getText()).toBe('Delete Hero');
285+
let trs = element.all(by.tagName('sg-app tr'));
286+
let row1Tds = trs.get(0).all(by.tagName('td'));
287+
expect(row1Tds.get(0).getText()).toBe('1');
288+
expect(row1Tds.get(1).getText()).toBe('Windstorm');
289+
let row2Tds = trs.get(1).all(by.tagName('td'));
290+
expect(row2Tds.get(0).getText()).toBe('2');
291+
expect(row2Tds.get(1).getText()).toBe('Bombasto');
292+
let row3Tds = trs.get(2).all(by.tagName('td'));
293+
expect(row3Tds.get(0).getText()).toBe('3');
294+
expect(row3Tds.get(1).getText()).toBe('Magneta');
295+
let row4Tds = trs.get(3).all(by.tagName('td'));
296+
expect(row4Tds.get(0).getText()).toBe('4');
297+
expect(row4Tds.get(1).getText()).toBe('Tornado');
298+
let buttons = element.all(by.tagName('sg-app td button'));
299+
expect(buttons.get(0).getText()).toBe('Delete Windstorm');
300+
expect(buttons.get(1).getText()).toBe('Delete Bombasto');
301+
expect(buttons.get(2).getText()).toBe('Delete Magneta');
302+
expect(buttons.get(3).getText()).toBe('Delete Tornado');
303+
});
304+
305+
it('11-09', function () {
306+
browser.get('#/11-09');
307+
308+
let image = element(by.tagName('sg-app img'));
309+
expect(image.getAttribute('alt')).toBe('Angular 2 logo');
310+
});
311+
312+
it('11-11', function () {
313+
browser.get('#/11-11');
314+
315+
let span = element(by.css('sg-app span.green-background'));
316+
expect(span.getText()).toBe('Current status is OK!');
317+
});
318+
209319
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
selector: 'sg-app',
5+
template: `<div>I am a page set to US English</div>`
6+
})
7+
export class AppComponent {
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!-- avoid -->
2+
3+
<!DOCTYPE html>
4+
<!-- #docregion page-lang-->
5+
<html>
6+
<!-- #enddocregion page-lang-->
7+
<head>
8+
<meta charset="UTF-8">
9+
<title>Title</title>
10+
</head>
11+
<body>
12+
<!--Some content-->
13+
</body>
14+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<!-- #docregion page-lang-->
3+
<html lang="en-US">
4+
<!-- #enddocregion page-lang -->
5+
<head>
6+
<meta charset="UTF-8">
7+
<title>Title</title>
8+
</head>
9+
<body>
10+
<!--Some content-->
11+
</body>
12+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './app.component';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* #docregion */
2+
/* avoid */
3+
4+
:focus {
5+
outline: 0;
6+
}
7+
8+
/* or */
9+
10+
:focus {
11+
outline: none;
12+
}
13+
/* #enddocregion */
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<label>Name:
2+
<input [(ngModel)]="name">
3+
</label>
4+
<label>Surname:
5+
<input [(ngModel)]="surname">
6+
</label>
7+
{{name}}{{surname}}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
moduleId: module.id,
5+
selector: 'sg-app',
6+
templateUrl: 'app.component.html'
7+
})
8+
export class AppComponent {
9+
name: string;
10+
surname: string;
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './app.component';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!-- #docregion -->
2+
<!--avoid-->
3+
4+
<div class="button" (click)="saveData()">Press me</div>
5+
<!-- #enddocregion -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.button {
2+
font-family: Arial;
3+
background-color: #eee;
4+
border: none;
5+
padding: 5px 10px;
6+
border-radius: 4px;
7+
margin-bottom: 5px;
8+
width: 75px;
9+
cursor: pointer;
10+
cursor: hand;
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<!-- #docregion-->
2+
<button (click)="saveData()">Press me</button>
3+
<!-- #enddocregion -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
moduleId: module.id,
5+
selector: 'sg-app',
6+
templateUrl: 'app.component.html',
7+
styleUrls: ['app.component.css']
8+
})
9+
export class AppComponent {
10+
11+
saveData() {
12+
alert('Button pressed.');
13+
}
14+
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './app.component';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- #docregion -->
2+
<!--avoid-->
3+
4+
<div><label>Name: </label>{{hero.name}}</div>
5+
<div><label>Power: </label>{{hero.power}}</div>
6+
7+
<!--or-->
8+
9+
<div><span>Name: </span>{{hero.name}}</div>
10+
<div><span>Power: </span>{{hero.power}}</div>
11+
<!-- #enddocregion -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dl dt {
2+
float: left;
3+
clear: left;
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!-- #docregion-->
2+
<dl>
3+
<dt>Name:</dt>
4+
<dd>{{hero.name}}</dd>
5+
<dt>Power:</dt>
6+
<dd>{{hero.power}}</dd>
7+
</dl>
8+
<!-- #enddocregion -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
moduleId: module.id,
5+
selector: 'sg-app',
6+
templateUrl: 'app.component.html',
7+
styleUrls: ['app.component.css']
8+
})
9+
export class AppComponent {
10+
11+
hero: any;
12+
13+
constructor() {
14+
this.hero = {name: 'Windstorm', power: 'Air'};
15+
}
16+
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './app.component';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!-- #docregion -->
2+
<!--avoid-->
3+
4+
<label>Name:</label>
5+
<input [(ngModel)]="hero.name">
6+
7+
<!--and-->
8+
9+
<span>Name:</span>
10+
<input [(ngModel)]="hero.name">
11+
12+
<!--and-->
13+
14+
<label >Power options</label>
15+
<input type="radio"
16+
name="hero_power"
17+
(click)="hero.power = 'Air'"
18+
[checked]="hero.power === 'Air'">
19+
<input type="radio"
20+
name="hero_power_2"
21+
(click)="hero.power = 'Fire'"
22+
[checked]="hero.power === 'Fire'">
23+
24+
<!-- #enddocregion -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fieldset {
2+
margin-bottom: 5px;
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!-- #docregion-->
2+
<label>Name:
3+
<input [(ngModel)]="hero.name">
4+
</label>
5+
6+
<fieldset>
7+
<legend>Power options</legend>
8+
<label>Air
9+
<input type="radio"
10+
name="hero_power"
11+
(click)="assignPower('Air')"
12+
[checked]="checkPower('Air')">
13+
</label>
14+
<label>Fire
15+
<input type="radio"
16+
name="hero_power"
17+
(click)="assignPower('Fire')"
18+
[checked]="checkPower('Fire')">
19+
</label>
20+
</fieldset>
21+
22+
<!--or-->
23+
24+
<label for="hero_name_id">Name:</label>
25+
<input id="hero_name_id" [(ngModel)]="hero.name">
26+
27+
<fieldset>
28+
<legend>Power options</legend>
29+
<label for="radio_air_id">Air</label>
30+
<input type="radio"
31+
id="radio_air_id"
32+
name="hero_power_2"
33+
(click)="assignPower('Air')"
34+
[checked]="checkPower('Air')">
35+
<label for="radio_fire_id">Fire</label>
36+
<input type="radio"
37+
id="radio_fire_id"
38+
name="hero_power_2"
39+
(click)="assignPower('Fire')"
40+
[checked]="checkPower('Fire')">
41+
</fieldset>
42+
43+
<!-- #enddocregion -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { Component } from '@angular/core';
2+
import { Hero } from './heroes';
3+
4+
@Component({
5+
moduleId: module.id,
6+
selector: 'sg-app',
7+
templateUrl: 'app.component.html',
8+
styleUrls: ['app.component.css']
9+
})
10+
export class AppComponent {
11+
12+
hero: Hero;
13+
14+
constructor() {
15+
this.hero = new Hero();
16+
}
17+
18+
assignPower(power: string) {
19+
this.hero.power = power;
20+
}
21+
22+
checkPower(power: string): boolean {
23+
return this.hero.power === power;
24+
}
25+
26+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './shared';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export class Hero {
2+
id: number;
3+
name: string;
4+
power: string;
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './hero.model';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './heroes';
2+
export * from './app.component';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<!-- #docregion -->
2+
<!--avoid-->
3+
4+
<button (click)="gotoDestination()">Go to Angular!</button>
5+
6+
<!--or-->
7+
8+
<a (click)="alertUser()" href="#">Alert User</a>
9+
<!-- #enddocregion -->

0 commit comments

Comments
 (0)