testilo 19.1.4 → 19.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/procs/digest/tdp37/index.html +4 -22
- package/procs/score/tic37.js +15 -0
package/package.json
CHANGED
|
@@ -31,31 +31,13 @@
|
|
|
31
31
|
</header>
|
|
32
32
|
<h2>Introduction</h2>
|
|
33
33
|
<p>How <a href="https://www.w3.org/WAI/">accessible</a> is the __org__ web page at <a href="__url__"><code>__url__</code></a>?</p>
|
|
34
|
-
<p>This digest can help answer that question. Nine different tools (Alfa, ASLint, Axe, Equal Access, HTML CodeSniffer, Nu Html Checker, QualWeb, Testaro, and WAVE) tested the page to check its compliance with their accessibility rules. In all, the tools define about 960 rules, which are classified here into about
|
|
35
|
-
<
|
|
36
|
-
<
|
|
37
|
-
<table class="allBorder secondCellRight">
|
|
38
|
-
<caption>Score summary</caption>
|
|
39
|
-
<thead>
|
|
40
|
-
<tr><th>Component</th><th>Score</th><th>Description</th></tr>
|
|
41
|
-
</thead>
|
|
42
|
-
<tbody class="headersLeft">
|
|
43
|
-
<tr><th>issue</th><td>__issue__</td><td>Severity and number of reported defects</td></tr>
|
|
44
|
-
<tr><th>tool</th><td>__tool__</td><td>Tool-by-tool defect ratings</td></tr>
|
|
45
|
-
<tr><th>prevention</th><td>__prevention__</td><td>Failed attempts by tools to test the page</td></tr>
|
|
46
|
-
<tr><th>log</th><td>__log__</td><td>Browser warnings about the page</td></tr>
|
|
47
|
-
<tr><th>latency</th><td>__latency__</td><td>Abnormal delay in page responses</td></tr>
|
|
48
|
-
</tbody>
|
|
49
|
-
<tfoot>
|
|
50
|
-
<tr><th>total</th><td>__total__</td><td>Sum of the component scores</td></tr>
|
|
51
|
-
</tfoot>
|
|
52
|
-
</table>
|
|
53
|
-
<h2>Issue scores</h2>
|
|
54
|
-
<p>The score on an issue depends on the <dfn>severity</dfn> (user impact and certainty) of the issue and on how many instances were reported (by one or more tools).</p>
|
|
34
|
+
<p>This digest can help answer that question. Nine different tools (Alfa, ASLint, Axe, Equal Access, HTML CodeSniffer, Nu Html Checker, QualWeb, Testaro, and WAVE) tested the page to check its compliance with their accessibility rules. In all, the tools define about 960 rules, which are classified here into about 300 accessibility issues.</p>
|
|
35
|
+
<p>The results were interpreted to yield a score, with 0 being ideal. The score for this page was __total__, the sum of __issue__ for issues, __tool__ for tool-by-tool ratings, __prevention__ for the page preventing tools from running, __log__ for browser warnings, and __latency__ for delayed page responses.</p>
|
|
36
|
+
<h2>Issue summary</h2>
|
|
55
37
|
<table class="allBorder thirdCellRight">
|
|
56
38
|
<caption>Summary of issues</caption>
|
|
57
39
|
<thead>
|
|
58
|
-
<tr><th>Issue</th><th>WCAG</th><th>Score</th><th>Tools
|
|
40
|
+
<tr><th>Issue</th><th>WCAG</th><th>Score</th><th>Tools reporting the issue</th></tr>
|
|
59
41
|
</thead>
|
|
60
42
|
<tbody class="headersLeft">
|
|
61
43
|
__issueRows__
|
package/procs/score/tic37.js
CHANGED
|
@@ -7595,6 +7595,21 @@ exports.issues = {
|
|
|
7595
7595
|
}
|
|
7596
7596
|
}
|
|
7597
7597
|
},
|
|
7598
|
+
scrollFocus: {
|
|
7599
|
+
summary: 'scrollable element and its children not focusable',
|
|
7600
|
+
why: 'User may be unable to see all of an item without scrolling in both dimensions',
|
|
7601
|
+
wcag: '2.1.1',
|
|
7602
|
+
weight: 3,
|
|
7603
|
+
tools: {
|
|
7604
|
+
ibm: {
|
|
7605
|
+
element_scrollable_tabbable: {
|
|
7606
|
+
variable: false,
|
|
7607
|
+
quality: 1,
|
|
7608
|
+
what: 'Element and its children are not focusable, but the element is scrollable'
|
|
7609
|
+
}
|
|
7610
|
+
}
|
|
7611
|
+
}
|
|
7612
|
+
},
|
|
7598
7613
|
scrollRisk: {
|
|
7599
7614
|
summary: 'container size unit not percentage',
|
|
7600
7615
|
why: 'User may be unable to see all of an item without scrolling in both dimensions',
|