Accessibility digest
Contents
Page | Eric Hovde;Republican;Wisconsin |
---|---|
URL | https://erichovde.com |
Test date | 2024/09/22 |
Score | 4255 |
Redirections | permitted |
---|---|
Tool isolation | no |
Report format(s) | standard |
Requester | |
Device | default |
Browser type | webkit |
Reduced motion | not requested |
Tested by | Testaro, procedure senate2024 |
Scored by | Testilo, procedure tsp50 |
Digested by | Testilo, procedure tdp50 |
Full report | 240915T1658-ikz-2g.json |
Introduction
How accessible is the Eric Hovde;Republican;Wisconsin web page at https://erichovde.com
?
This digest gives one answer to that question. Eleven different tools (Alfa, ASLint, Axe, Editoria11y, Equal Access, HTML CodeSniffer, Nu Html Checker, QualWeb, Testaro, WAVE, and WallyAX) tested the page to check its compliance with their accessibility rules. In all, the tools define about a thousand rules, which are classified here into about three hundred accessibility issues.
The results were interpreted to yield a score, with 0 being ideal. The score for this page was 4255, the sum of 740 for the count of issues, 2582 for specific issues, 0 for unclassified rule violations, 452 for tool-by-tool ratings, 258 for the count of violating elements, 0 for the page preventing tools from running, 223 for browser warnings, and 0 for delayed page responses.
How the page was scored
Introduction
This is an explanation of the scoring of the page.
Motivations for scoring
Why score? Specifically, why aggregate many facts about a page into a single number?
One motivation is to simplify comparison and tracking. If you want to compare a page with other pages, or if you want to track changes in a page over time, aggregating many test results for each page into one page score simplifies the task. It becomes possible to say things like Page A is more accessible than page B
or Page A is becoming more accessible over time
.
Another motivation is to influence behavior. A score arises from decisions about importance, urgency, and other attributes. People may use scores to award benefits, impose costs, or prioritize work. So, scoring can influence who gets and does what.
How to score?
Scoring is subjective. Accessibility testing tools use various scoring procedures, based on various ideas.
The built-in scoring procedures of Testilo are based on the idea that multiple attributes should affect a web-page accessibility score, including:
- conformity to standards
- adherence to best practices
- how many different issues exist
- how many instances of each issue exist
- how many tools report violations of their rules
- how trustworthy each test of each tool is
- how serious each violation of a rule is
- simplicity
- speed of page responses
- testability
- conformity to expectations of browsers
Some ideas found elsewhere in accessibility scoring are rejected by the Testilo procedures:
- density: that an accessibility score should be based on the count of accessibility faults as a fraction of the count of potential accessibility faults (so, the score of a large page with particular faults should be better than the score of a smaller page with exactly those faults)
- applicability: that the score of a page should depend on the types of its content (so, the score of a page with accessible video content should be better than the score of an otherwise identical page without video content)
Scoring method summary
The scoring method is found in the code of the procedure. The file for any procedure tspnn
is in the file procs/score/tspnn.js
within the Testilo package.
The score computed by this procedure for any page is a non-negative number. The numbers represent accessibility faults, so a higher-scoring page is considered less accessible than a lower-scoring page. The best possible score is 0.
The procedure makes the score of a page the sum of 7 components:
- issue score: how many instances of issues were reported
- solo score: how many violations of rules not yet classified into issues were reported
- tool score: how many violations of their rules did tools report
- element score: how many HTML elements did any tool identify as violating at least one tool rule
- prevention score: how many tools were unable to perform their tests on the page
- log score: how much logging of page errors and other events did the browser do
- latency score: how long did the page take to load and become stable
Scoring method details
The above component descriptions omit various details.
About a thousand tool rules are classified into issues in the tic50.js
file used by this procedure. Each of those rules has a quality, ranging from 0 to 1. When the issue score is computed, the count of violations of each rule is multiplied by the quality of that rule. Whichever tool has the largest quality-weighted violation count for an issue, that count is treated as the instance count for the issue. Thus, if 8 tools each report 15 violations within the issue, and their rule qualities are all 1, the instance count is 15, not 120. Moreover, the issue itself has a weight, ranging from 1 to 4, representing its importance. This instance count is multiplied by that weight. That product is further multiplied by the issueCountWeight
value, namely 10. That final product is further adjusted if the issue is inherently limited in instance count. For example, if the issue is that the page html
element has no lang
attribute, the instance count is limited to 1. If there is such a limit, the maxWeight
value, namely 30, is divided by the actual instance count and the quotient is added to 1. That product (or 1 if there is no limit) is multiplied by the instance count, and then the result is treated as the contribution of the issue to the issue score.
Each solo (not yet issue-classified) rule violation is multiplied by the sum of 1 and the ordinal severity of the rule, to produce the solo score.
Each rule violation reported by each tool is severity-weighted in the same way as solo rule violations are. Then the sum of those violations is multiplied by the toolWeight
value, namely 0.1, to produce the tool score.
The count of elements reported as violators of any rule is multiplied by the elementWeight
value, namely 2, to produce the element score.
The count of prevented Testaro rules is multiplied by the testaroRulePreventionWeight
quantity, namely 30, and the count of other prevented tools is multiplied by the preventionWeight
value, namely 300, to produce the prevention score.
The log score is the sum of several components:
- log count: how many times the browser logged a message
- log size: how many characters large the collection of browser log messages was
- error log count: how many browser log messages reported page errors
- error log size: how many characters large the collection of browser log messages reporting page errors was
- prohibition count: how many times the browser logged a prohibited response status (403)
- visit rejection count: how many times the browser logged an abnormal response status
Each of these components is multiplied by a weight found in the logWeights
object.
Finally, the latency score is based on how much longer it took for the page to become loaded and stable than expected. The expected total duration in seconds is the normalLatency
value, namely 22 seconds (that is 2 seconds per visit, multiplied by the 11 visits of the 11 tools). This is subtracted from the actual total latency, and that difference is multiplied by the latencyWeight
amount, namely 2.
Issue summary
Details about this summary
- This table shows the numbers of rule violations (
instances
) reported by one or more tools, classified by issue. - Tools often disagree on instance counts, because of non-equivalent rules or invalid tests. You can inspect the full report to diagnose differences.
- The
WCAG
value is the principle, guideline, or success criterion of the Web Content Accessibility Guidelines most relevant to the issue. - The
Weight
value estimates the importance of an instance of the issue, from 1 (minor or advisory) to 4 (serious). - The
Score
value is the contribution of the instances of the issue to the page score. - An instance count of 0 means the tool has a rule belonging to the issue but reported no violations of that rule, although at least one tool reported at least one violation.
- You can sort this table by WCAG, weight, or score.
The summary
Sorting is by score.
Issue | WCAG | Weight | Score | Instance counts |
---|---|---|---|---|
ID not unique | 4.1.1 | 4 | 248 | alfa :26, aslint :26, axe :3, htmlcs :13, ibm :21, nuVal :62, wax :13, qualWeb :0 |
meta bans zoom | 1.4.4 | 4 | 248 | alfa :1, aslint :1, axe :1, nuVal :2, qualWeb :1, wax :1 |
text in Private Use Area | 3.1.3 | 4 | 248 | nuVal :2 |
type redundant | 1.3.1 | 1 | 118 | nuVal :118 |
link not named | 2.4.4 | 4 | 108 | alfa :4, axe :13, ed11y :27, htmlcs :14, ibm :1, qualWeb :3, wave :5, wax :14 |
void element has trailing slash | 4.1 | 1 | 108 | nuVal :108 |
font size absolute | 1.4.4 | 2 | 99 | qualWeb :62, alfa :0 |
h1 not 1st heading | 1.3.1 | 3 | 93 | alfa :1 |
link indication poor | 1.3.3 | 2 | 84 | testaro :42, alfa :0, axe :0 |
title attribute invalid | 1.3.1 | 4 | 84 | testaro :21 |
contrast poor | 1.4.3 | 4 | 76 | axe :19, htmlcs :5, ibm :2, qualWeb :6, wave :8, wax :8, alfa :0, aslint :0 |
control not named | 4.1.2 | 4 | 64 | wax :16, alfa :0, axe :0, htmlcs :0, ibm :0, qualWeb :0, wave :0 |
not exactly 1 h1 heading | 1.3.1 | 2 | 62 | aslint :1, axe :1, wave :1, nuVal :0 |
main missing | 1.3.6 | 2 | 62 | axe :1 |
primary heading not h1 | 1.3.1 | 2 | 62 | wax :1 |
skip method missing or invalid | 2.4.1 | 3 | 48 | wax :1, axe :0, ibm :0, wave :0 |
content beyond landmarks | 1.3.6 | 1 | 47 | alfa :39, axe :33, ibm :47, wax :34 |
text contrast improvable | 1.4.6 | 1 | 40 | alfa :23, aslint :40, axe :22, htmlcs :14, qualWeb :19, wax :19 |
links named identically | 2.4.4 | 2 | 40 | aslint :17, testaro :20, qualWeb :0 |
all-capital text | 3.1.5 | 1 | 36 | alfa :1, aslint :36, testaro :6, ed11y :0 |
attribute value invalid | 1.3.1 | 4 | 36 | nuVal :9, ibm :0, wax :0 |
attribute invalid | 1.3.1 | 4 | 32 | nuVal :8, aslint :0, axe :0, ibm :0, wax :0 |
image dubiously named | 1.1.1 | 1 | 31 | qualWeb :31, aslint :0, wave :0 |
large visible-element count | 2.4 | 1 | 31 | testaro :1 |
item makes testing inconclusive | 4.1 | 1 | 30 | alfa :30 |
line height low | 1.4.8 | 2 | 30 | alfa :1, testaro :15 |
target small | 2.5.5 | 1 | 29 | alfa :10, testaro :29 |
tab-opening link action unstated | 3.2.5 | 3 | 27 | ed11y :18 |
heading level skipped | 1.3.1 | 2 | 24 | axe :12, alfa :0, ed11y :0, wave :0, wax :0 |
link element invalid | 1.3.1 | 4 | 24 | htmlcs :6, wax :6, nuVal :0 |
error reference invalid | 3.3.1 | 4 | 24 | qualWeb :6, ibm :0 |
tab-opening link action unstated? | 3.2.5 | 1 | 19 | aslint :18, htmlcs :14, testaro :19 |
control label invisible | 2.4.6 | 4 | 16 | aslint :4, axe :0, wax :0 |
hover indication poor | 3.3.2 | 3 | 15 | testaro :5 |
audio or video alternatives missing? | 1.2.2 | 1 | 15 | wave :15 |
inconsistent heading, link, or button styles | 3.2.4 | 1 | 13 | testaro :13 |
target very small | 2.5.8 | 3 | 12 | alfa :4 |
svg image not named | 1.1.1 | 4 | 12 | aslint :3, ibm :1, alfa :0, axe :0, qualWeb :0, wax :0 |
link element invalid | 1.3.1 | 4 | 12 | nuVal :3, htmlcs :0 |
focus indication poor | 2.4.7 | 4 | 12 | testaro :3, alfa :0, aslint :0 |
z-index not zero | 1.4 | 1 | 11 | testaro :11 |
text contrast not testable | 1.4.3 | 1 | 9 | alfa :9, htmlcs :6, aslint :0 |
heading heads nothing | 1.3.1 | 2 | 8 | alfa :4, wax :0 |
no role-required name | 4.1.2 | 4 | 8 | ibm :2, wax :0 |
parent invalid | 1.3.1 | 4 | 8 | nuVal :2, ibm :0 |
heading names repeated | 1.3.1 | 2 | 8 | testaro :4, wax :1, aslint :0 |
operable element not focusable | 2.1.1 | 4 | 8 | testaro :2 |
overflow hidden? | 1.4.4 | 1 | 7 | qualWeb :7 |
fieldset missing? | 1.3.1 | 1 | 6 | aslint :6, htmlcs :0, wax :0 |
font small | 1.4 | 3 | 6 | aslint :2, alfa :0, testaro :0, wave :0 |
labeling risky | 3.3.2 | 1 | 6 | aslint :6 |
element referenced by multiple labels | 1.3.1 | 1 | 6 | aslint :6, axe :4, ibm :2, wave :6 |
label location dubious | 3.3.2 | 1 | 6 | ibm :1, qualWeb :6, aslint :0 |
CSS invalid | 4.1 | 3 | 6 | nuVal :2 |
autocomplete missing | 1.3.5 | 4 | 6 | testaro :3 |
autocomplete invalid | 1.3.5 | 3 | 6 | wax :2, alfa :0, aslint :0, axe :0, htmlcs :0, ibm :0, nuVal :0, qualWeb :0 |
text distortion | 3.1.5 | 1 | 5 | testaro :5 |
heading structure illogical | 1.3.1 | 2 | 4 | aslint :1, htmlcs :2 |
CSS bans page rotation | 1.3.4 | 4 | 4 | aslint :1, qualWeb :0 |
image not named | 1.1.1 | 4 | 4 | nuVal :1, alfa :0, axe :0, ed11y :0, htmlcs :0, ibm :0, qualWeb :0, wave :0, wax :0 |
tabindex redundant | 1.3.1 | 1 | 3 | aslint :3 |
code obsolete | 4.1 | 3 | 3 | ibm :1, nuVal :0 |
role invalid | 4.1.2 | 3 | 3 | ibm :1, alfa :0, aslint :0, axe :0, nuVal :0, qualWeb :0 |
element closure invalid | 4.1.1 | 3 | 3 | nuVal :1 |
duplicate attribute | 4.1.1 | 2 | 3 | testaro :2, nuVal :0 |
noscript element not equivalent? | 4.1 | 1 | 3 | wave :3 |
title attribute redundant | 1.3.1 | 1 | 3 | wave :3, aslint :0, qualWeb :0, testaro :0 |
link href missing | 1.3.1 | 2 | 2 | aslint :1, htmlcs :0, nuVal :0, testaro :0 |
link destination not URL | 1.3.1 | 1 | 2 | aslint :2 |
nav links not list | 1.3.1 | 2 | 2 | htmlcs :1 |
position sticky | 1.4.10 | 1 | 2 | htmlcs :2, aslint :0 |
justification undefined? | 1.4.8 | 1 | 1 | qualWeb :1 |
container size unit not percentage | 1.4.10 | 1 | 1 | qualWeb :1 |
false aria-hidden value risky | 2.4.6 | 0 | 0 | aslint :3 |
Itemized issues
The reported rule violations are itemized below, issue by issue. Additional details can be inspected in the full report.
Issue: ID not unique
Impact: User may be pointed to the wrong item
WCAG: 4.1.1
Score: 248
Elements
None identified
Violations of alfa
rules
Rule r3
Description: Element id attribute value is not unique
Count of instances: 26
Violations of aslint
rules
Rule duplicated_id_attribute
Description: Element id attribute value is not unique
Count of instances: 26
Violations of axe
rules
Rule duplicate-id-aria
Description: id attribute used in ARIA or in a label has a value that is not unique
Count of instances: 3
Violations of htmlcs
rules
Rule AAA.4_1_1.F77
Description: Duplicate id attribute value
Count of instances: 13
Violations of ibm
rules
Rule element_id_unique
Description: Element has an id attribute value that is already in use
Count of instances: 21
Violations of nuVal
rules
Rule ^Duplicate ID .+$|^The first occurrence of ID .* was here.*$
Description: Duplicate id
Count of instances: 62
Violations of wax
rules
Rule ^Duplicate id attribute value .+ found on the web page.+$
Description: id attribute value is not unique
Count of instances: 13
Issue: meta bans zoom
Impact: User cannot adjust the document size for readability
WCAG: 1.4.4
Score: 248
Elements
None identified
Violations of alfa
rules
Rule r47
Description: Element restricts zooming
Count of instances: 1
Violations of aslint
rules
Rule zoom_disabled
Description: Element specifies a minimum or maximum scale or prohibits zooming
Count of instances: 1
Violations of axe
rules
Rule meta-viewport
Description: Zooming and scaling are disabled
Count of instances: 1
Violations of nuVal
rules
Rule Consider avoiding viewport values that prevent users from resizing documents.
Description: viewport value prevents users from resizing the document
Count of instances: 2
Violations of qualWeb
rules
Rule QW-ACT-R14
Description: meta viewport prevents zoom
Count of instances: 1
Violations of wax
rules
Rule Ensure does not disable text scaling and zooming.
Description: Element disables zooming or scaling
Count of instances: 1
Issue: text in Private Use Area
Impact: User cannot read all of the text
WCAG: 3.1.3
Score: 248
Elements
None identified
Violations of nuVal
rules
Rule Document uses the Unicode Private Use Area(s), which should not be used in publicly exchanged documents. (Charmod C073)
Description: Page includes a Unicode PUA character
Count of instances: 2
Issue: type redundant
Impact: Document includes unnecessary code
WCAG: 1.3.1
Score: 118
Elements
None identified
Violations of nuVal
rules
Rule The type attribute is unnecessary for JavaScript resources.
Description: type attribute is unnecessary for a JavaScript resource
Count of instances: 108
Rule The type attribute for the style element is not needed and should be omitted.
Description: type attribute is unnecessary for a style element
Count of instances: 10
Issue: link not named
Impact: User cannot get help understanding what a link points to
WCAG: 2.4.4
Score: 108
Elements
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[1]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[2]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[3]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[4]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[5]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[6]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[7]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[8]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[9]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[10]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[11]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[12]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[13]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[14]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[15]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[16]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[17]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[18]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[19]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[20]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[21]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[22]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[23]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[24]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[25]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[26]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[27]/div/div/div/div/div/div[1]/div/a
Violations of alfa
rules
Rule r11
Description: Link has no accessible name
Count of instances: 4
Violations of axe
rules
Rule link-name
Description: Link has no discernible text
Count of instances: 13
Violations of ed11y
rules
Rule linkNoText
Description: Link has no text
Count of instances: 27
Violations of htmlcs
rules
Rule AAA.4_1_2.H91.A.Empty
Description: a element has an id attribute but no href attribute or text
Count of instances: 2
Rule AAA.4_1_2.H91.A.EmptyNoId
Description: Link has no name or id attribute or value
Count of instances: 1
Rule AAA.4_1_2.H91.A.NoContent
Description: Link has an href attribute but not named
Count of instances: 11
Violations of ibm
rules
Rule a_text_purpose
Description: Hyperlink has no link text, label, or image with a text alternative
Count of instances: 1
Violations of qualWeb
rules
Rule QW-ACT-R12
Description: Link has no accessible name
Count of instances: 3
Violations of wave
rules
Rule link_empty
Description: Link contains not named
Count of instances: 5
Violations of wax
rules
Rule Provide discernible text for links.
Description: Link has no discernible text
Count of instances: 12
Rule Anchor element found with a valid href attribute, but no link content has been supplied.
Description: Link has an href attribute but no content
Count of instances: 1
Rule Anchor element found with no link content and no name and/or ID attribute.
Description: Link has no content, accessible name, or id attribute
Count of instances: 1
Issue: void element has trailing slash
Impact: Document contains invalid code
WCAG: 4.1
Score: 108
Elements
None identified
Violations of nuVal
rules
Rule Trailing slash on void elements has no effect and interacts badly with unquoted attribute values.
Description: Void element has a useless trailing slash.
Count of instances: 108
Issue: font size absolute
Impact: User cannot adjust the text size for readability
WCAG: 1.4.4
Score: 99
Elements
None identified
Violations of qualWeb
rules
Rule QW-WCAG-T28
Description: Font size set to an absolute unit value
Count of instances: 62
Issue: h1 not 1st heading
Impact: User cannot understand the topic of the document
WCAG: 1.3.1
Score: 93
Elements
None identified
Violations of alfa
rules
Rule r61
Description: First heading is not h1
Count of instances: 1
Issue: link indication poor
Impact: User cannot differentiate a link from plain text
WCAG: 1.3.3
Score: 84
Elements
- /html/body/div[1]/div/header/div/div[1]/div/div[1]/div/a
- /html/body/div[1]/div/header/div/div[1]/div/div[2]/div/a
- /html/body/div[1]/div/header/div/div[1]/div/div[3]/div/div/div/div/div/a
- /html/body/div[1]/div/header/div/div[2]/div/div[1]/div/a
- /html/body/div[1]/div/header/div/div[2]/div/div[2]/div/a
- /html/body/div[1]/div/header/div/div[2]/div/div[3]/div/div/div/div/div/a
- /html/body/div[1]/div/header/div/div[3]/div[1]/div[1]/div/a
- /html/body/div[1]/div/header/div/div[3]/div[1]/div[2]/div/a
- /html/body/div[1]/div/header/div/div[3]/div[1]/div[3]/div/div/div/div/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[1]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[2]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[3]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[4]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[1]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[2]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[3]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[4]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[5]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[6]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[7]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[8]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[9]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[10]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[11]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[12]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[13]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[14]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[15]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[16]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[17]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[18]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[19]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[20]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[21]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[22]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[23]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[24]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[25]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[26]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[27]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[6]/div/ul/li/a[1]
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[6]/div/ul/li/a[2]
Violations of testaro
rules
Rule linkUl
Description: Inline links are not underlined
Count of instances: 42
Issue: title attribute invalid
Impact: User cannot hover to get help explaining an item
WCAG: 1.3.1
Score: 84
Elements
- /html/head/link[4]
- /html/head/link[5]
- /html/head/link[6]
- /html/head/link[33]
- /html/head/link[34]
- /html/head/link[36]
- /html/head/link[37]
- /html/body/div[1]/div/header/div/div[1]/div/div[1]/div/a/span/img
- /html/body/div[1]/div/header/div/div[2]/div/div[1]/div/a/span/img
- /html/body/div[1]/div/header/div/div[3]/div[1]/div[1]/div/a/span/img
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/ul/li[1]/a
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/ul/li[2]/a
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/ul/li[3]/a
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/ul/li[4]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[4]/div/div[2]/div[2]/span/img
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[6]/div/ul/li/a[1]
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/div[1]/span/img
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[1]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[2]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[3]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[4]/a
Violations of testaro
rules
Rule titledEl
Description: title attribute belongs to an inappropriate element
Count of instances: 21
Issue: contrast poor
Impact: Content is difficult to understand
WCAG: 1.4.3
Score: 76
Elements
None identified
Violations of axe
rules
Rule color-contrast
Description: Element has insufficient color contrast
Count of instances: 19
Violations of htmlcs
rules
Rule AAA.1_4_6.G18.Fail
Description: Contrast between the text and its background is less than 4.5:1
Count of instances: 5
Violations of ibm
rules
Rule text_contrast_sufficient
Description: Text has a contrast with its background less than the WCAG AA minimum for its size and weight
Count of instances: 2
Violations of qualWeb
rules
Rule QW-ACT-R37
Description: Text has less than the minimum contrast
Count of instances: 6
Violations of wave
rules
Rule contrast
Description: Very low contrast
Count of instances: 8
Violations of wax
rules
Rule ^This element has insufficient contrast at this conformance level. Expected a contrast ratio of at least 4.5:1, but text in this element has a contrast ratio of .+. Recommendation: change .+ to #.+$
Description: Contrast between the element text and its background is less than 4.5:1
Count of instances: 8
Issue: control not named
Impact: User cannot get help on how to operate a form item
WCAG: 4.1.2
Score: 64
Elements
None identified
Violations of wax
rules
Rule Ensure form elements have associated labels.
Description: Form control element has no label
Count of instances: 16
Issue: not exactly 1 h1 heading
Impact: User cannot understand the topic of the document
WCAG: 1.3.1
Score: 62
Elements
None identified
Violations of aslint
rules
Rule h1_must_be
Description: Page contains no h1 element
Count of instances: 1
Violations of axe
rules
Rule page-has-heading-one
Description: Document contains no level-one heading
Count of instances: 1
Violations of wave
rules
Rule h1_missing
Description: Missing first level heading
Count of instances: 1
Issue: main missing
Impact: User cannot get help on how some of the document is organized
WCAG: 1.3.6
Score: 62
Elements
None identified
Violations of axe
rules
Rule landmark-one-main
Description: page has no main landmark
Count of instances: 1
Issue: primary heading not h1
Impact: User cannot understand the topic of the document
WCAG: 1.3.1
Score: 62
Elements
None identified
Violations of wax
rules
Rule ^The heading structure is not logically nested. This h. element appears to be the primary document heading, so should be an h1 element.+$
Description: Apparent primary document heading is not h1
Count of instances: 1
Issue: skip method missing or invalid
Impact: Keyboard-only user cannot easily reach the specific content of the document
WCAG: 2.4.1
Score: 48
Elements
None identified
Violations of wax
rules
Rule Ensure that any common navigation elements can be bypassed; for instance, by use of skip links, header elements, or ARIA landmark roles.
Description: Page provides no way to quickly navigate to the main content
Count of instances: 1
Issue: content beyond landmarks
Impact: User cannot get help on how some of the document is organized
WCAG: 1.3.6
Score: 47
Elements
None identified
Violations of alfa
rules
Rule r57
Description: Perceivable text content is not included in any landmark
Count of instances: 39
Violations of axe
rules
Rule region
Description: Some page content is not contained by landmarks
Count of instances: 33
Violations of ibm
rules
Rule aria_content_in_landmark
Description: Content is not within a landmark element
Count of instances: 47
Violations of wax
rules
Rule Use landmarks to contain page content.
Description: Content is not within a landmark element
Count of instances: 34
Issue: text contrast improvable
Impact: Content is not easy to understand
WCAG: 1.4.6
Score: 40
Elements
None identified
Violations of alfa
rules
Rule r66
Description: Text contrast less than AAA requires
Count of instances: 23
Violations of aslint
rules
Rule color_contrast_aaa7
Description: Text has contrast less than 7:1
Count of instances: 36
Rule color_contrast_aaa4
Description: Text has contrast less than 4.5:1
Count of instances: 4
Violations of axe
rules
Rule color-contrast-enhanced
Description: Element has insufficient color contrast (Level AAA)
Count of instances: 22
Violations of htmlcs
rules
Rule AAA.1_4_6.G17.Fail
Description: Text has insufficient contrast
Count of instances: 14
Violations of qualWeb
rules
Rule QW-ACT-R76
Description: Text has less than the enhanced minimum contrast
Count of instances: 19
Violations of wax
rules
Rule ^This element has insufficient contrast at this conformance level. Expected a contrast ratio of at least 7:1, but text in this element has a contrast ratio of .+. Recommendation: change .+ to #.+$
Description: Contrast between the element text and its background is less than 7:1
Count of instances: 19
Issue: links named identically
Impact: User cannot get help differentiating links
WCAG: 2.4.4
Score: 40
Elements
- /html/body/div[1]/div/header/div/div[2]/div/div[1]/div/a
- /html/body/div[1]/div/header/div/div[2]/div/div[2]/div/a
- /html/body/div[1]/div/header/div/div[2]/div/div[3]/div/div/div/div/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[11]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[13]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[14]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[15]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[19]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[20]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[21]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[22]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[23]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[24]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[25]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[26]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[27]/div/div/div/div/div/div[1]/div/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[2]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[3]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[4]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/div[3]/div/p/a[2]
Violations of aslint
rules
Rule links_same_content_different_url
Description: Links with the same text content have different destination URLs
Count of instances: 17
Violations of testaro
rules
Rule linkAmb
Description: Links with the same text content have different destinations
Count of instances: 20
Issue: all-capital text
Impact: Text is difficult to read
WCAG: 3.1.5
Score: 36
Elements
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[1]/div/h2
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[1]/div/div/div/div[1]/div/div/div/h4
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[2]/div/div/div/div[1]/div/div/div/h4
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[1]/div/div/div/div[2]/div/div/div[1]/h4
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[2]/div/div/div/div[1]/div/div/div/h4
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[2]/div/div/div/div[2]/div/div/div[1]/h4
Violations of alfa
rules
Rule r72
Description: Paragraph text is uppercased
Count of instances: 1
Violations of aslint
rules
Rule capital_letters_words
Description: Element or its title has entirely upper-case words
Count of instances: 36
Violations of testaro
rules
Rule allCaps
Description: Element has a text substring of at least 8 upper-case characters
Count of instances: 6
Issue: attribute value invalid
Impact: Item behaves improperly
WCAG: 1.3.1
Score: 36
Elements
None identified
Violations of nuVal
rules
Rule ^Bad value .* for attribute .+ on element .+$
Description: Attribute on this element has an invalid value
Count of instances: 9
Issue: attribute invalid
Impact: Item behaves improperly
WCAG: 1.3.1
Score: 32
Elements
None identified
Violations of nuVal
rules
Rule ^Attribute .+ not allowed on element .+ at this point.*$
Description: Attribute not allowed on this element
Count of instances: 8
Issue: image dubiously named
Impact: Helper may describe an image inadequately
WCAG: 1.1.1
Score: 31
Elements
None identified
Violations of qualWeb
rules
Rule QW-WCAG-T8
Description: Text alternative is suspect
Count of instances: 31
Issue: large visible-element count
Impact: User cannot easily find items in the document
WCAG: 2.4
Score: 31
Elements
None identified
Violations of testaro
rules
Rule bulk
Description: Page contains many visible elements
Count of instances: 1
Issue: item makes testing inconclusive
Impact: Item prevents a conclusive accessibility test
WCAG: 4.1
Score: 30
Elements
None identified
Violations of alfa
rules
Rule cantTell
Description: Test could not give a conclusive result
Count of instances: 30
Issue: line height low
Impact: Text is difficult to read
WCAG: 1.4.8
Score: 30
Elements
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[3]/a
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[3]/a/span
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[4]/a
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[5]/a
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[6]/a
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[6]/a/span
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[8]/a/span
- /html/body/div[1]/div/div/div/article/div/div/div/div[2]/div[1]/div/div/div/h2
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[1]/div/div/div/div/div[2]
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[5]
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[1]/div/div/div/div[1]/div/div/div/h4
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[1]/div/div/div/div[2]/div/div/div[1]/h4
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[1]/div/div/div/div[2]/div/div/div[1]/h4
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[2]/div/div/div/div[1]/div/div/div/h4
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[2]/div/div/div/div[2]/div/div/div[1]/h4
Violations of alfa
rules
Rule r73
Description: Text line height is not at least 1.5
Count of instances: 1
Violations of testaro
rules
Rule lineHeight
Description: Text has a line height less than 1.5 times its font size
Count of instances: 15
Issue: target small
Impact: User cannot reliably choose an item to click or tap
WCAG: 2.5.5
Score: 29
Elements
- /html/body/div[1]/div/header/div/div[1]/div/div[1]/div/a
- /html/body/div[1]/div/header/div/div[1]/div/div[2]/div/a
- /html/body/div[1]/div/header/div/div[2]/div/div[1]/div/a
- /html/body/div[1]/div/header/div/div[2]/div/div[2]/div/a
- /html/body/div[1]/div/header/div/div[3]/div[1]/div[1]/div/a
- /html/body/div[1]/div/header/div/div[3]/div[1]/div[2]/div/a
- /html/body/div[1]/div/header/div/div[3]/div[1]/div[3]/div/div/div/div/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[1]/div/div[3]/div[1]/input
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[2]
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[3]
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[4]
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[5]
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[6]
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[7]
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[8]
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/button[1]
- /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/button[2]
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[1]/div/div[3]/div[1]/input
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[2]
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[3]
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[4]
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[5]
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[6]
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[7]
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[8]
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[6]/div/ul/li/a[1]
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[6]/div/ul/li/a[2]
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/div[3]/div/p/a[1]
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/div[3]/div/p/a[2]
Violations of alfa
rules
Rule r111
Description: Target size is suboptimal
Count of instances: 10
Violations of testaro
rules
Rule targetSize
Description: Button, input, or non-inline link is smaller than 44 px wide and high
Count of instances: 29
Issue: tab-opening link action unstated
Impact: Following a link opens a new window, surprising a user
WCAG: 3.2.5
Score: 27
Elements
- /html/body/div[1]/div/header/div/div[1]/div/div[2]/div/a
- /html/body/div[1]/div/header/div/div[2]/div[1]/div[2]/div/a
- /html/body/div[1]/div/header/div/div[2]/div[2]/div/div/div/div/nav/div/span/ul/li[8]/a
- /html/body/div[1]/div/header/div/div[2]/div[2]/div/ul/li[1]/a
- /html/body/div[1]/div/header/div/div[2]/div[2]/div/ul/li[2]/a
- /html/body/div[1]/div/header/div/div[2]/div[2]/div/ul/li[3]/a
- /html/body/div[1]/div/header/div/div[2]/div[2]/div/ul/li[4]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[1]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[2]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[3]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[4]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[2]/div/div/ul/li[6]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[1]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[2]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[3]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[4]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/div[3]/div/p/a[1]
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/div[3]/div/p/a[2]
Violations of ed11y
rules
Rule linkNewWindow
Description: Link opens a new window or tab without prior notice
Count of instances: 18
Issue: heading level skipped
Impact: Helper misdescribes the document
WCAG: 1.3.1
Score: 24
Elements
None identified
Violations of axe
rules
Rule heading-order
Description: Heading levels do not increase by only one or their order is ambiguous
Count of instances: 12
Issue: link element invalid
Impact: Document fails to get a needed external resource
WCAG: 1.3.1
Score: 24
Elements
None identified
Violations of htmlcs
rules
Rule AAA.2_4_8.H59.1
Description: Element is not in the document head
Count of instances: 6
Violations of wax
rules
Rule Link elements can only be located in the head section of the document.
Description: link element is not located in the head element
Count of instances: 6
Issue: error reference invalid
Impact: User cannot correct a form error
WCAG: 3.3.1
Score: 24
Elements
None identified
Violations of qualWeb
rules
Rule QW-ACT-R41
Description: Error message describes no invalid form field value
Count of instances: 6
Issue: tab-opening link action unstated?
Impact: Following a link opens a new window, possibly surprising a user
WCAG: 3.2.5
Score: 19
Elements
- /html/body/div[1]/div/header/div/div[1]/div/div[2]/div/a
- /html/body/div[1]/div/header/div/div[2]/div/div[2]/div/a
- /html/body/div[1]/div/header/div/div[3]/div[1]/div[2]/div/a
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[8]/a
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/ul/li[1]/a
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/ul/li[2]/a
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/ul/li[3]/a
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/ul/li[4]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[1]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[2]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[3]/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[4]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[2]/div/div/ul/li[6]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[1]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[2]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[3]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[4]/a
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/div[3]/div/p/a[1]
- /html/body/div[1]/div/div/footer/div/div/div/div[3]/div[3]/div/p/a[2]
Violations of aslint
rules
Rule links_new_window_mark
Description: Indicator that the link opens a new window or tab may be missing
Count of instances: 18
Violations of htmlcs
rules
Rule AAA.3_2_5.H83.3
Description: Link text may fail to indicate that the link will open in a new window
Count of instances: 14
Violations of testaro
rules
Rule linkExt
Description: Link opens a new window or tab
Count of instances: 19
Issue: control label invisible
Impact: User cannot understand how to operate a form item
WCAG: 2.4.6
Score: 16
Elements
None identified
Violations of aslint
rules
Rule label_visually_hidden_only
Description: Form control has a label but it is not visible
Count of instances: 4
Issue: hover indication poor
Impact: User cannot explore the document reliably with a mouse
WCAG: 3.3.2
Score: 15
Elements
None identified
Violations of testaro
rules
Rule hovInd
Description: Hovering is unclearly indicated
Count of instances: 5
Issue: audio or video alternatives missing?
Impact: User may be unable to get help reading video content as text
WCAG: 1.2.2
Score: 15
Elements
None identified
Violations of wave
rules
Rule youtube_video
Description: YouTube video may have no or incorrect captions
Count of instances: 15
Issue: inconsistent heading, link, or button styles
Impact: User cannot easily distinguish items of different types
WCAG: 3.2.4
Score: 13
Elements
None identified
Violations of testaro
rules
Rule styleDiff
Description: Heading, link, and button style inconsistencies
Count of instances: 13
Issue: target very small
Impact: User cannot reliably choose an item to click or tap
WCAG: 2.5.8
Score: 12
Elements
None identified
Violations of alfa
rules
Rule r113
Description: Target size is substandard
Count of instances: 4
Issue: svg image not named
Impact: User cannot get help understanding an image
WCAG: 1.1.1
Score: 12
Elements
None identified
Violations of aslint
rules
Rule accessible_svg
Description: Element has no title, description, text, attribute label, or role description
Count of instances: 3
Violations of ibm
rules
Rule svg_graphics_labelled
Description: Element is svg but has no accessible name
Count of instances: 1
Issue: link element invalid
Impact: Document fails to get a needed external resource
WCAG: 1.3.1
Score: 12
Elements
None identified
Violations of nuVal
rules
Rule A link element with an as attribute must have a rel attribute that contains the value preload or the value modulepreload.
Description: Element has an as attribute but no rel attribute with preload or modulepreload as its value
Count of instances: 3
Issue: focus indication poor
Impact: Keyboard-only user cannot choose an item to operate
WCAG: 2.4.7
Score: 12
Elements
- /html/body/div[1]/div/header/div/div[1]/div/div[1]/div/a
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[1]/div/div[1]/div/input
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[1]/div/div[2]/div/input
Violations of testaro
rules
Rule focInd
Description: Focused element displays a nonstandard or no focus indicator
Count of instances: 3
Issue: z-index not zero
Impact: User cannot predict the effect of clicking
WCAG: 1.4
Score: 11
Elements
- /html/body/div[1]/div/header/div/div[1]/div/div[2]
- /html/body/div[1]/div/header/div/div[1]/div/div[3]/div
- /html/body/div[1]/div/header/div/div[2]/div/div[1]/div
- /html/body/div[1]/div/header/div/div[2]/div/div[3]
- /html/body/div[1]/div/header/div/div[3]/div[1]/div[2]
- /html/body/div[1]/div/header/div/div[3]/div[2]/div
- /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div
- /html/body/div[1]/div/div/div/article/div/div/div/div[2]/div[1]
- /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[1]/div
- /html/body/div[1]/div/div/div/article/div/div/div/div[4]/div/div[2]
Violations of testaro
rules
Rule zIndex
Description: Element has a nondefault z-index value
Count of instances: 11
Issue: text contrast not testable
Impact: Text may be difficult to read
WCAG: 1.4.3
Score: 9
Elements
None identified
Violations of alfa
rules
Rule cantTellTextContrast
Description: Test of text contrast could not give a conclusive result
Count of instances: 9
Violations of htmlcs
rules
Rule AAA.1_4_6.G17.Abs
Description: Contrast between the absolutely positioned text and its background may be less than 7:1
Count of instances: 5
Rule AAA.1_4_6.G18.Abs
Description: Contrast between the absolutely positioned text and its background may be less than 4.5:1
Count of instances: 1
Issue: heading heads nothing
Impact: Helper misdescribes the document
WCAG: 1.3.1
Score: 8
Elements
None identified
Violations of alfa
rules
Rule r78
Description: No content between two headings of the same level
Count of instances: 4
Issue: no role-required name
Impact: User cannot get help understanding an item
WCAG: 4.1.2
Score: 8
Elements
None identified
Violations of ibm
rules
Rule aria_accessiblename_exists
Description: Element has no accessible name, although its role requires one
Count of instances: 2
Issue: parent invalid
Impact: User cannot properly operate an item
WCAG: 1.3.1
Score: 8
Elements
None identified
Violations of nuVal
rules
Rule ^Element .+ not allowed as child of element .+ in this context.*$
Description: Element has an invalid parent
Count of instances: 2
Issue: heading names repeated
Impact: User cannot differentiate parts of the document
WCAG: 1.3.1
Score: 8
Elements
None identified
Violations of testaro
rules
Rule headingAmb
Description: Heading has the same text as a previous sibling heading at the same level
Count of instances: 4
Violations of wax
rules
Rule ^The heading structure is not logically nested. This h. element should be an h. to be properly nested.+$
Description: Heading level is illogical
Count of instances: 1
Issue: operable element not focusable
Impact: Keyboard-only user cannot navigate properly to an operable item
WCAG: 2.1.1
Score: 8
Elements
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[2]/div
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[1]/div
Violations of testaro
rules
Rule opFoc
Description: Operable element is not Tab-focusable
Count of instances: 2
Issue: overflow hidden?
Impact: User may be unable to enlarge the text for readability
WCAG: 1.4.4
Score: 7
Elements
None identified
Violations of qualWeb
rules
Rule QW-ACT-R40
Description: Zoomed text node may be clipped by a CSS overflow declaration
Count of instances: 7
Issue: fieldset missing?
Impact: User may be unable to get help recognizing a group of related form items
WCAG: 1.3.1
Score: 6
Elements
None identified
Violations of aslint
rules
Rule group_elements_name_attribute
Description: Element is an input with a name attribute but has no fieldset parent
Count of instances: 6
Issue: font small
Impact: Text is difficult to read
WCAG: 1.4
Score: 6
Elements
None identified
Violations of aslint
rules
Rule minimum_font_size
Description: Font size is smaller than 10 pixels
Count of instances: 2
Issue: labeling risky
Impact: User may misunderstand a form control
WCAG: 3.3.2
Score: 6
Elements
None identified
Violations of aslint
rules
Rule missing_labelN
Description: Element has an id attribute but no explicit label references it
Count of instances: 6
Issue: element referenced by multiple labels
Impact: User cannot get reliable help on the topics of form items
WCAG: 1.3.1
Score: 6
Elements
None identified
Violations of aslint
rules
Rule duplicated_for_attribute
Description: More than 1 label element has the same for attribute
Count of instances: 6
Violations of axe
rules
Rule form-field-multiple-labels
Description: Form field has multiple label elements
Count of instances: 4
Violations of ibm
rules
Rule form_label_unique
Description: Form control has more than one label
Count of instances: 2
Violations of wave
rules
Rule label_multiple
Description: Form control has more than one label associated with it
Count of instances: 6
Issue: label location dubious
Impact: User may fail to notice the explanation of an item in a form
WCAG: 3.3.2
Score: 6
Elements
None identified
Violations of ibm
rules
Rule input_label_before
Description: Label text is after its text input or select element
Count of instances: 1
Violations of qualWeb
rules
Rule QW-WCAG-T17
Description: label not positioned to maximize the predictability of the relationship
Count of instances: 6
Issue: CSS invalid
Impact: Document cannot be properly displayed
WCAG: 4.1
Score: 6
Elements
None identified
Violations of nuVal
rules
Rule ^CSS: .+: Property .+ doesn't exist.*$
Description: Invalid property in CSS
Count of instances: 2
Issue: autocomplete missing
Impact: User cannot get help entering personal information in a form
WCAG: 1.3.5
Score: 6
Elements
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[1]/div/div[1]/div/input
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[1]/div/div[3]/div[1]/input
- /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[1]/div/div[1]/div/input
Violations of testaro
rules
Rule autocomplete
Description: Name or email input is missing its required autocomplete attribute
Count of instances: 3
Issue: autocomplete invalid
Impact: User cannot get help entering personal information in a form item
WCAG: 1.3.5
Score: 6
Elements
None identified
Violations of wax
rules
Rule ^Element does not belong to .+ control group. Invalid autocomplete value has been provided - .+$
Description: autocomplete attribute has an invalid value
Count of instances: 2
Issue: text distortion
Impact: Text is difficult to read
WCAG: 3.1.5
Score: 5
Elements
- /html/body/div[1]/div/div/div/article/div/div/div/div[1]
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[1]/div/div
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[1]/div/div/div/div[2]
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[1]/div/div/div/div[2]/div
- /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[1]/div/div/div/div[2]/div
Violations of testaro
rules
Rule distortion
Description: Element text is distorted by a transform style property
Count of instances: 5
Issue: heading structure illogical
Impact: Helper misdescribes the document
WCAG: 1.3.1
Score: 4
Elements
None identified
Violations of aslint
rules
Rule headings_hierarchy
Description: Heading level is illogical in its context
Count of instances: 1
Violations of htmlcs
rules
Rule AAA.1_3_1_AAA.G141
Description: Heading level is incorrect
Count of instances: 2
Issue: CSS bans page rotation
Impact: User must read sideways after rotating a device
WCAG: 1.3.4
Score: 4
Elements
None identified
Violations of aslint
rules
Rule orientation
Description: CSS media query specifies an orientation
Count of instances: 1
Issue: image not named
Impact: User cannot get help to know what is in an image
WCAG: 1.1.1
Score: 4
Elements
None identified
Violations of nuVal
rules
Rule An img element must have an alt attribute, except under certain conditions. For details, consult guidance on providing text alternatives for images.
Description: img element has no alt attribute
Count of instances: 1
Issue: tabindex redundant
Impact: Revision risks interfering with navigation by a keyboard-only user
WCAG: 1.3.1
Score: 3
Elements
None identified
Violations of aslint
rules
Rule misused_tabindex_attribute
Description: Element has an implicit tabIndex value 0, but also has a tabindex attribute
Count of instances: 3
Issue: code obsolete
Impact: Document contains code that is no longer standard
WCAG: 4.1
Score: 3
Elements
None identified
Violations of ibm
rules
Rule element_attribute_deprecated
Description: Element or attribute is obsolete
Count of instances: 1
Issue: role invalid
Impact: User cannot get help on the nature of an item
WCAG: 4.1.2
Score: 3
Elements
None identified
Violations of ibm
rules
Rule aria_contentinfo_misuse
Description: Element with a contentinfo role is present without an element with a main role
Count of instances: 1
Issue: element closure invalid
Impact: Document contains invalid code
WCAG: 4.1.1
Score: 3
Elements
None identified
Violations of nuVal
rules
Rule ^No .+ element in scope but a .+ end tag seen.*$
Description: End tag for an element that is not in scope
Count of instances: 1
Issue: duplicate attribute
Impact: Browser processes the document improperly
WCAG: 4.1.1
Score: 3
Elements
None identified
Violations of testaro
rules
Rule dupAtt
Description: Source code of the element contains 2 or more of the same attribute
Count of instances: 2
Issue: noscript element not equivalent?
Impact: User who has disabled JavaScript may be denied some content
WCAG: 4.1
Score: 3
Elements
None identified
Violations of wave
rules
Rule noscript
Description: noscript element may fail to contain an accessible equivalent or alternative
Count of instances: 3
Issue: title attribute redundant
Impact: Helper repeats the explanation of an item
WCAG: 1.3.1
Score: 3
Elements
None identified
Violations of wave
rules
Rule title_redundant
Description: Title attribute text is the same as the text or alternative text
Count of instances: 3
Issue: link href missing
Impact: Helper cannot properly explain a link to a user
WCAG: 1.3.1
Score: 2
Elements
None identified
Violations of aslint
rules
Rule missing_href_on_a
Description: Link has no href attribute
Count of instances: 1
Issue: link destination not URL
Impact: Helper cannot properly explain a link to a user
WCAG: 1.3.1
Score: 2
Elements
None identified
Violations of aslint
rules
Rule unclear_anchor_uri
Description: Link destination is #, a script, or empty
Count of instances: 2
Issue: nav links not list
Impact: User cannot get help recognizing a list of navigation links
WCAG: 1.3.1
Score: 2
Elements
None identified
Violations of htmlcs
rules
Rule AAA.1_3_1.H48
Description: Navigation links are not coded as a list
Count of instances: 1
Issue: position sticky
Impact: User may be unable to see needed content or may be forced to scroll in both dimensions
WCAG: 1.4.10
Score: 2
Elements
None identified
Violations of htmlcs
rules
Rule AAA.1_4_10.C32,C31,C33,C38,SCR34,G206
Description: Fixed-position element may force bidirectional scrolling
Count of instances: 2
Issue: justification undefined?
Impact: Text may be difficult to read
WCAG: 1.4.8
Score: 1
Elements
None identified
Violations of qualWeb
rules
Rule QW-WCAG-T29
Description: Alignment either to the left or right is not specified in CSS
Count of instances: 1
Issue: container size unit not percentage
Impact: User may be unable to see all of an item without scrolling in both dimensions
WCAG: 1.4.10
Score: 1
Elements
None identified
Violations of qualWeb
rules
Rule QW-BP18
Description: Percentage is not used in CSS for a container size
Count of instances: 1
Issue: false aria-hidden value risky
Impact: User may be misled by erroneously hidden or revealed document content
WCAG: 2.4.6
Score: 0
Elements
None identified
Violations of aslint
rules
Rule aria_hidden_false
Description: aria-hidden attribute has the value false
Count of instances: 3
Elements with issues
Elements exhibiting issues:
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]
- text distortion
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div
- z-index not zero
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[1]/div/h2
- all-capital text
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[1]/div/div[1]/div/input
- autocomplete missing
- focus indication poor
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[1]/div/div[2]/div/input
- focus indication poor
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[1]/div/div[3]/div[1]/input
- autocomplete missing
- target small
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[2]
- target small
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[3]
- target small
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[4]
- target small
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[5]
- target small
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[6]
- target small
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[7]
- target small
Element /html/body/div[1]/div/div/div/article/div/div/div/div[1]/div/div/div[2]/div/div/form/div[2]/input[8]
- target small
Element /html/body/div[1]/div/div/div/article/div/div/div/div[2]/div[1]
- z-index not zero
Element /html/body/div[1]/div/div/div/article/div/div/div/div[2]/div[1]/div/div/div/h2
- line height low
Element /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[1]/div
- z-index not zero
Element /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[1]/div/div/div/div/div[2]
- line height low
Element /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[1]/a
- link indication poor
- tab-opening link action unstated
- tab-opening link action unstated?
Element /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[2]/a
- link indication poor
- tab-opening link action unstated
- tab-opening link action unstated?
Element /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[3]/a
- link indication poor
- tab-opening link action unstated
- tab-opening link action unstated?
Element /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[4]/a
- link indication poor
- tab-opening link action unstated
- tab-opening link action unstated?
Element /html/body/div[1]/div/div/div/article/div/div/div/div[3]/div[2]/div/div[5]
- line height low
Element /html/body/div[1]/div/div/div/article/div/div/div/div[4]/div/div[2]
- z-index not zero
Element /html/body/div[1]/div/div/div/article/div/div/div/div[4]/div/div[2]/div[2]/span/img
- title attribute invalid
Element /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[1]/div/div
- text distortion
Element /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[1]/div/div/div/div[1]/div/div/div/h4
- all-capital text
- line height low
Element /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[1]/div/div/div/div[2]
- text distortion
Element /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[1]/div/div/div/div[2]/div
- text distortion
Element /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[1]/div/div/div/div[2]/div/div/div[1]/h4
- line height low
Element /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[2]/div
- operable element not focusable
Element /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[2]/div[2]/div/div/div/div[1]/div/div/div/h4
- all-capital text
Element /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[1]/div
- operable element not focusable
Element /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[1]/div/div/div/div[2]/div
- text distortion
Element /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[1]/div/div/div/div[2]/div/div/div[1]/h4
- all-capital text
- line height low
Element /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[2]/div/div/div/div[1]/div/div/div/h4
- all-capital text
- line height low
Element /html/body/div[1]/div/div/div/article/div/div/div/div[5]/div[3]/div[2]/div/div/div/div[2]/div/div/div[1]/h4
- all-capital text
- line height low
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/button[1]
- target small
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/button[2]
- target small
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[10]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[11]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[12]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[13]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[14]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[15]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[16]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[17]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[18]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[19]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[1]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[20]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[21]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[22]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[23]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[24]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[25]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[26]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[27]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
- links named identically
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[2]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[3]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[4]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[5]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[6]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[7]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[8]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/div/article/div/div/div/div[6]/div[2]/div/div/div/div/div/div/div[9]/div/div/div/div/div/div[1]/div/a
- link indication poor
- link not named
Element /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[1]/div/div[1]/div/input
- autocomplete missing
Element /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[1]/div/div[3]/div[1]/input
- target small
Element /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[2]
- target small
Element /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[3]
- target small
Element /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[4]
- target small
Element /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[5]
- target small
Element /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[6]
- target small
Element /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[7]
- target small
Element /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[2]/div/div/form/div[2]/input[8]
- target small
Element /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[6]/div/ul/li/a[1]
- link indication poor
- target small
- title attribute invalid
Element /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[6]/div/ul/li/a[2]
- link indication poor
- target small
Element /html/body/div[1]/div/div/footer/div/div/div/div[2]/div/div/ul/li[6]/a
- tab-opening link action unstated
- tab-opening link action unstated?
Element /html/body/div[1]/div/div/footer/div/div/div/div[3]/div[1]/span/img
- title attribute invalid
Element /html/body/div[1]/div/div/footer/div/div/div/div[3]/div[3]/div/p/a[1]
- tab-opening link action unstated
- tab-opening link action unstated?
- target small
Element /html/body/div[1]/div/div/footer/div/div/div/div[3]/div[3]/div/p/a[2]
- links named identically
- tab-opening link action unstated
- tab-opening link action unstated?
- target small
Element /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[1]/a
- tab-opening link action unstated
- tab-opening link action unstated?
- title attribute invalid
Element /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[2]/a
- links named identically
- tab-opening link action unstated
- tab-opening link action unstated?
- title attribute invalid
Element /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[3]/a
- links named identically
- tab-opening link action unstated
- tab-opening link action unstated?
- title attribute invalid
Element /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li[4]/a
- links named identically
- tab-opening link action unstated
- tab-opening link action unstated?
- title attribute invalid
Element /html/body/div[1]/div/header/div/div[1]/div/div[1]/div/a
- focus indication poor
- link indication poor
- target small
Element /html/body/div[1]/div/header/div/div[1]/div/div[1]/div/a/span/img
- title attribute invalid
Element /html/body/div[1]/div/header/div/div[1]/div/div[2]
- z-index not zero
Element /html/body/div[1]/div/header/div/div[1]/div/div[2]/div/a
- link indication poor
- tab-opening link action unstated
- tab-opening link action unstated?
- target small
Element /html/body/div[1]/div/header/div/div[1]/div/div[3]/div
- z-index not zero
Element /html/body/div[1]/div/header/div/div[1]/div/div[3]/div/div/div/div/div/a
- link indication poor
Element /html/body/div[1]/div/header/div/div[2]/div/div[1]/div
- z-index not zero
Element /html/body/div[1]/div/header/div/div[2]/div/div[1]/div/a
- link indication poor
- links named identically
- target small
Element /html/body/div[1]/div/header/div/div[2]/div/div[1]/div/a/span/img
- title attribute invalid
Element /html/body/div[1]/div/header/div/div[2]/div/div[2]/div/a
- link indication poor
- links named identically
- tab-opening link action unstated?
- target small
Element /html/body/div[1]/div/header/div/div[2]/div/div[3]
- z-index not zero
Element /html/body/div[1]/div/header/div/div[2]/div/div[3]/div/div/div/div/div/a
- link indication poor
- links named identically
Element /html/body/div[1]/div/header/div/div[2]/div[1]/div[2]/div/a
- tab-opening link action unstated
Element /html/body/div[1]/div/header/div/div[2]/div[2]/div/div/div/div/nav/div/span/ul/li[8]/a
- tab-opening link action unstated
Element /html/body/div[1]/div/header/div/div[2]/div[2]/div/ul/li[1]/a
- tab-opening link action unstated
Element /html/body/div[1]/div/header/div/div[2]/div[2]/div/ul/li[2]/a
- tab-opening link action unstated
Element /html/body/div[1]/div/header/div/div[2]/div[2]/div/ul/li[3]/a
- tab-opening link action unstated
Element /html/body/div[1]/div/header/div/div[2]/div[2]/div/ul/li[4]/a
- tab-opening link action unstated
Element /html/body/div[1]/div/header/div/div[3]/div[1]/div[1]/div/a
- link indication poor
- target small
Element /html/body/div[1]/div/header/div/div[3]/div[1]/div[1]/div/a/span/img
- title attribute invalid
Element /html/body/div[1]/div/header/div/div[3]/div[1]/div[2]
- z-index not zero
Element /html/body/div[1]/div/header/div/div[3]/div[1]/div[2]/div/a
- link indication poor
- tab-opening link action unstated?
- target small
Element /html/body/div[1]/div/header/div/div[3]/div[1]/div[3]/div/div/div/div/div/a
- link indication poor
- target small
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div
- z-index not zero
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div
- z-index not zero
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[3]/a
- line height low
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[3]/a/span
- line height low
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[4]/a
- line height low
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[5]/a
- line height low
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[6]/a
- line height low
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[6]/a/span
- line height low
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[8]/a
- tab-opening link action unstated?
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/div/div/div/nav/div/span/ul/li[8]/a/span
- line height low
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/ul/li[1]/a
- tab-opening link action unstated?
- title attribute invalid
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/ul/li[2]/a
- tab-opening link action unstated?
- title attribute invalid
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/ul/li[3]/a
- tab-opening link action unstated?
- title attribute invalid
Element /html/body/div[1]/div/header/div/div[3]/div[2]/div/ul/li[4]/a
- tab-opening link action unstated?
- title attribute invalid
Element /html/head/link[33]
- title attribute invalid
Element /html/head/link[34]
- title attribute invalid
Element /html/head/link[36]
- title attribute invalid
Element /html/head/link[37]
- title attribute invalid
Element /html/head/link[4]
- title attribute invalid
Element /html/head/link[5]
- title attribute invalid
Element /html/head/link[6]
- title attribute invalid