-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
34 lines (32 loc) · 1.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>Accessbility runner</title>
<script type="module" src="./src/app.ts"></script>
</head>
<body aria-hidden="true">
<details>
<summary>
Active <area> elements must have alternate text
</summary>
<img src="https://via.placeholder.com/100x100" alt="Solar System" width="100" height="100" usemap="#Map"/>
<map name="Map">
<area shape="rect" coords="115,158,276,192" href="http://en.wikipedia.org/wiki/Mercury_%28planet%29" alt="Mercury">
<area shape="rect" coords="115,193,276,234" href="http://en.wikipedia.org/wiki/Venus" alt="Venus">
<area shape="rect" coords="115,193,276,234" href="http://en.wikipedia.org/wiki/Uranus">
</map>
</details>
<details>
<summary>
Elements must only use allowed ARIA attributes
</summary>
<i>foobar</i>
</details>
<details>
<summary>
ARIA roles used must conform to valid values
</summary>
<li role="foo"></li>
</details>
</body>
</html>