-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (51 loc) · 2.21 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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="public/style.css">
<title>Accessibility Report</title>
</head>
<body>
<header class="bg">
<h1>Accessibility Report</h1>
<nav>
<ul>
<li><a href="#summary">Summary</a></li>
<li><a href="#violations">Violations</a></li>
</ul>
</nav>
</header>
<main>
<div id="app"></div>
</main>
<footer class="bg">
<p>Created by Mark Conroy & Big Blue Door</p>
</footer>
<dialog class="dialog-violations">
<button class="dialog-violations__close">Close</button>
<div class="dialog-violations__title">
<h2>2 Landmark Unique Violations</h2>
<p>URL: <a href="https://www.cnn.com/">https://www.cnn.com/</a></p>
</div>
<ol class="dialog-violations__list">
<li>
<ul>
<li><strong>HTML:</strong> <code><nav data-uri="cms.cnn.com/_components/header/instances/cnn-v2@published" id="pageHeader" data-editable="settings" class="header cnn-app-display-none" data-analytics-aggregate-events="true"></code></li>
<li><strong>Target:</strong> #pageHeader</li>
<li><strong>Summary:</strong> Fix any of the following:
The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable</li>
</ul>
</li><li>
<ul>
<li><strong>HTML:</strong> <code><nav class="user-account-nav user-account-nav--unauth" data-uri="cms.cnn.com/_components/user-account-nav/instances/user-account-nav@published" data-editable="settings" data-one-tap-enabled="false" data-one-tap-enabled-mw="false" aria-label="User Account Nav" data-avatar-enabled="false" tabindex="0" style="visibility: visible;"></code></li>
<li><strong>Target:</strong> #desktop-header-account-nav > .user-account-nav.user-account-nav--unauth[data-one-tap-enabled="false"]</li>
<li><strong>Summary:</strong> Fix any of the following:
The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable</li>
</ul>
</li>
</ol>
</dialog>
<script src="public/script.js"></script>
</body>
</html>