-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
45 lines (42 loc) · 1.09 KB
/
popup.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
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/styles.css">
<title>Aria Observation Tool</title>
</head>
<body>
<header>
<h1>Aria Observation Tool</h1>
</header>
<main>
<label for="aria-label">
<input type="checkbox" id="aria-label">
<code>aria-label</code>
</label>
<!-- <details>
<code>button</code>
<code>svg</code>
<code>span</code>
</details> -->
<!-- <label for="aria-labelledby">
<input type="checkbox" id="aria-labelledby">
<code>aria-labelledby</code>
</label> -->
<label for="aria-expanded">
<input type="checkbox" id="aria-expanded">
<code>aria-expanded</code>
</label>
<label for="aria-haspopup">
<input type="checkbox" id="aria-haspopup">
<code>aria-haspopup</code>
</label>
<label for="aria-hidden">
<input type="checkbox" id="aria-hidden">
<code>aria-hidden</code>
</label>
</main>
<script src="./popup.js"></script>
</body>
</html>