Site Report
This tab shows accessibility issues, indicating problems for older users, people with disabilities or accessibility needs. Automated testing cannot detect all accessibility issues, so should be used alongside human testing.
Level | WCAG 2.1 | Section 508 - 2017 | Key |
---|
A |  |  | Pages with level A issues are unusable for some people |
---|
AA |  |  | Pages with level AA issues are very difficult to use |
---|
AAA | | | Pages with level AAA issues can be difficult to use |
---|
Priority | Description and URL | Guideline and Line# | Count |
---|
Level A
7 issues on 7 pages | |
 | All fieldset elements should be labeled with legend elements. | WCAG 2.1 A H71 Section 508 (2017) A H71 | 1 pages |
|
The first child element inside a fieldset must be a legend element, which provides a label or description for the group. legend elements in other positions may be ignored. | | |
| https://gamma.net.ua/simpleregister/ | Line 1704 | |
 | All onclick handlers should have an equivalent onkeyup or onkeydown handler. | WCAG 2.1 A F54 Section 508 (2017) A F54 | 7 pages |
|
Some users are unable to use a mouse, so use the keyboard instead. Add an equivalent keyboard event handler to help these users. | | |
| https://gamma.net.ua/ | Line 370 432 467 520 676
...
| |
| https://gamma.net.ua/compare-products/ | Line 263 329 893 980 1023
...
| |
| https://gamma.net.ua/login/ | Line 263 329 893 980 1023
...
| |
| https://gamma.net.ua/simpleregister/ | Line 271 337 901 988 1031
...
| |
| This issue was found on another 3 pages.
The trial version is limited to showing issues on 4 pages.
| | |
 | Each a element must contain text or an img with an alt attribute. | WCAG 2.1 A F89 Section 508 (2017) A F89 | 6 pages |
|
A link name allows screen readers to voice what the links does. If there is no link text or the `alt` text is blank, screen readers have nothing to read, so read out the URL instead. To add a name do one of the following:
- Add text between the
a element start and end tags
- Add an
aria-label attribute
- Add an
aria-labelledby attribute
- Add an
img alt attribute if the link contains an img element
| | |
| https://gamma.net.ua/about_us.html | Line 1653 | |
| https://gamma.net.ua/compare-products/ | Line 1653 | |
| https://gamma.net.ua/login/ | Line 1653 | |
| https://gamma.net.ua/simpleregister/ | Line 1661 | |
| This issue was found on another 2 pages.
The trial version is limited to showing issues on 4 pages.
| | |
 | HTML form control has no accessible name. | WCAG 2.1 A F68 Section 508 (2017) A F68 | 7 pages |
|
A label (or name) linked to the control allows screen readers to voice the label correctly when reading the control. To add a label do one of the following:
- Use a
label element with the for attribute set to the ID of the form control
- Wrap a
label element around the form control
- Add a
title attribute
- Add an
aria-label attribute
- Add an
aria-labelledby attribute
| | |
| https://gamma.net.ua/ | Line 281 | |
| https://gamma.net.ua/compare-products/ | Line 184 | |
| https://gamma.net.ua/login/ | Line 184 1668 1674 | |
| https://gamma.net.ua/simpleregister/ | Line 192 | |
| This issue was found on another 3 pages.
The trial version is limited to showing issues on 4 pages.
| | |
 | This button element is empty and has no accessible name. | WCAG 2.1 A 4.1.2 Section 508 (2017) A 4.1.2 | 7 pages |
|
A programmatically determined name allows screen readers to tell users what the control does. To add a name do one of the following:
- Add text between the
button start and end tags
- Add a
title attribute
- Add an
aria-label attribute
- Add an
aria-labelledby attribute
- Add an
img alt attribute if the button contains an img element
| | |
| https://gamma.net.ua/ | Line 283 1548 1551 1578 1581
...
| |
| https://gamma.net.ua/compare-products/ | Line 186 | |
| https://gamma.net.ua/login/ | Line 186 | |
| https://gamma.net.ua/simpleregister/ | Line 194 | |
| This issue was found on another 3 pages.
The trial version is limited to showing issues on 4 pages.
| | |
 | This element uses JavaScript to behave like a link. Links like this cannot be tabbed to from the keyboard and are not read out when screen readers list the links on a page. | WCAG 2.1 A F42 Section 508 (2017) A F42 | 7 pages |
|
Use an a or area element with a fallback link target in the href attribute, to ensure it receive keyboard focus and behaves like a link. | | |
| https://gamma.net.ua/ | Line 152 | |
| https://gamma.net.ua/compare-products/ | Line 119 | |
| https://gamma.net.ua/login/ | Line 119 1681 | |
| https://gamma.net.ua/simpleregister/ | Line 127 | |
| This issue was found on another 3 pages.
The trial version is limited to showing issues on 4 pages.
| | |
 | Use semantic markup like strong instead of using the CSS font-weight property. | WCAG 2.1 A F2 Section 508 (2017) A F2 | 1 pages |
|
Use the strong element instead of the span element for bold text. | | |
| https://gamma.net.ua/ | Line 178 192 | |
Level AA
4 issues on 2 pages | |
 | Ensure that text and background colors have enough contrast. | WCAG 2.1 AA 1.4.3 Section 508 (2017) AA 1.4.3 | 1 pages |
|
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
- The contrast ratio should be 3.0 or more for 18 point text, or larger
- The contrast ratio should be 3.0 or more for 14 point bold text, or larger
- The contrast ratio should be 4.5 or more for all other text
| | |
| The text color to background color contrast ratio is: 3.96 with
color: rgb(217,83,79); background-color: rgb(255,255,255); font-size: 12pt; font-weight: 700; 3.96 with
color: rgb(217,83,79); background-color: rgb(255,255,255); font-size: 12pt; font-weight: 700; https://gamma.net.ua/ | Line 178 192 | |
 | For input type=password elements, set the autocomplete attribute to new-password or current-password in order to identify input purpose. | WCAG 2.1 1.3.5 | 1 pages |
|
Specifying what kind of data is expected in a particular input field makes filling out forms easier, especially for people with cognitive disabilities. While type=password specifies the type of input, it doesn't specify its purpose. Autocomplete values such as new-password and current-password are a well-supported way of identifying input purpose. | | |
| https://gamma.net.ua/login/ | Line 1674 | |
 | Form field labels should be unique on a page, or be close to text providing context. | WCAG 2.1 AA 2.4.6 Section 508 (2017) AA 2.4.6 | 1 pages |
|
Form fields with the same label need extra context (such as a heading)
to explain the differences between the fields. | | |
| Label used: купить купить купить купить купить https://gamma.net.ua/ | Line 1544 1574 1634 1664 1772
...
| |
 | If you set any of the colors on the body or a elements you must set all of them. | WCAG 2.1 AA F24 Section 508 (2017) AA F24 | 1 pages |
|
In HTML the color attributes are text , bgcolor , link , alink and vlink .
In CSS the attributes are color and background-color .
Some users have browser defaults set to white text on a black background, so setting
one color without setting the others can result in black text on a black background. | | |
| The colors used are:
color: rgb(217,83,79); background-color: rgb(255,255,255); uses browser default
color: rgb(217,83,79); background-color: rgb(255,255,255); uses browser default https://gamma.net.ua/ | Line 178 192 | |
Informative
These messages are for information only and do not indicate errors | |
 | Some CSS files have been blocked by robots.txt or the Blocked Links box. | Scanner | 20 pages |
|
Rules that depend on CSS, such as color contrast checks, are unreliable when CSS is blocked. | | |
| https://gamma.net.ua/catalog/view/theme/coloring/assets/bootstrap/css/bootstrap.min.css | Line 1 | |
| https://gamma.net.ua/catalog/view/theme/coloring/assets/font-awesome-4.6.3/css/font-awesome.min.css | Line 1 | |
| https://gamma.net.ua/catalog/view/theme/coloring/assets/nivo-slider/nivo-slider.css | Line 1 | |
| https://gamma.net.ua/catalog/view/theme/coloring/stylesheet/stylesheet.css | Line 1 | |
| This issue was found on another 16 pages.
The trial version is limited to showing issues on 4 pages.
| | |
| Expand all 12 issues | | |