Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DAlt Text QualityAction6 of 17 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 6 image(s) |
Images without alt text are invisible to screen readers.
Each image without alt text is a WCAG 1.1.1 failure — invisible to screen-reader users, lost from Google Image Search.
Learn more ▾ ▴
WCAG 2.1 Level A requires text alternatives for non-decorative images. Empty alt='' is fine for decorative; meaningful images need descriptive text. Common fixes: CMS audit + bulk add, build-time linter (alt-text-required ESLint rule), CI gate on Lighthouse a11y score.
Source: WCAG 2.1 SC 1.1.1 / WebAIM Million Report
An image inside a link with no alt creates an empty link.
Image-only links with no alt create empty links — screen-reader users hear 'link' with no destination context.
Learn more ▾ ▴
An <a><img></a> with no img alt is the worst-case for accessibility: AT announces the link but can't describe where it goes. Either add alt to the image OR add aria-label to the link.
Source: WCAG 2.1 SC 2.4.4
DWeb ManifestActionNot foundFIX
No web manifest found.
DPrint StylesheetActionNo print stylesFIX
BLink & Button Quality8 issue(s) across 197 links and 9 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| //www.mediawiki.org/wiki/File:Wikimedia_… | (empty) | empty | Add link text or aria-label |
| # | (empty) | empty | Add link text or aria-label |
| # | (empty) | empty | Add link text or aria-label |
| # | (empty) | empty | Add link text or aria-label |
| # | (empty) | empty | Add link text or aria-label |
| # | (empty) | empty | Add link text or aria-label |
| # | (empty) | empty | Add link text or aria-label |
| # | (empty) | empty | Add link text or aria-label |
Links without text are announced as raw URLs by screen readers.
//www.mediawiki.org/wiki/File:Wikimedia_Hackathon_2025_Group_photo_from_drone…; #; #; #; #; #; #; #
Links with no accessible text (empty <a></a>, image-only no alt, icon-only no aria-label) are unidentifiable to screen readers.
Source: WCAG 2.1 SC 2.4.4
B404 Error PageHTTP 404, custom pageREVIEW
CFavicon & BrandingAction3 icon(s) detectedREVIEW
BDark Mode SupportDark mode detectedREVIEW
Detection limited to meta tags and inline styles.
BLighthouse Accessibility AuditsScore 87/100 — 4 failing, 26 passedREVIEW
Accessibility
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
ARIA
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
Photo of participants of the Wikimedia Hackathon 2025 div.mw-content-ltr > section#mf-section-0 > div#lang_dir > div |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Navigation
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Set up and run MediaWiki div#audiences > div.mainpage_box > div.mw-heading > h3#Set_up_and_run_MediaWiki |
These are opportunities to improve keyboard navigation in your application.
Names and labels
Labels ensure that form controls are announced properly by assistive technologies, like screen readers. Learn more about form element labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
header.header-container > div.minerva-header > nav.navigation-drawer > input#main-menu-input header.header-container > div.minerva-header > nav.navigation-drawer > input#main-menu-input |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Contrast
Low-contrast text is difficult or impossible for many users to read. Link text that is discernible improves the experience for users with low vision. Learn how to make links distinguishable.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Wikimedia Hackathon 2025 div > figure.mw-halign-right > figcaption > a |
These are opportunities to improve the legibility of your content.
A+Landmark Structure15 landmarksPASS
A+Heading Hierarchy7 headingsPASS
- H1 MediaWiki is a collaboration and documentation platform brought to you by a vibrant community.
- H2 MediaWiki is a collaboration and documentation platform brought to you by a vibrant community.
- H3 Set up and run MediaWiki
- H3 Edit and use MediaWiki
- H3 Develop and extend code
- H3 Get help and contribute
- H3 News
AForm Accessibility1 of 15 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #vector-main-menu-dropdown-checkbox | checkbox | Main menu | aria-label |
| #searchInput | search | Search mediawiki.org | aria-label |
| #vector-appearance-dropdown-checkbox | checkbox | Appearance | aria-label |
| #skin-client-pref-vector-feature-custom-font-size-value-0 | radio | Small | for/id |
| #skin-client-pref-vector-feature-custom-font-size-value-1 | radio | Standard | for/id |
| #skin-client-pref-vector-feature-custom-font-size-value-2 | radio | Large | for/id |
| #skin-client-pref-vector-feature-limited-width-value-1 | radio | Standard | for/id |
| #skin-client-pref-vector-feature-limited-width-value-0 | radio | Wide | for/id |
| #skin-client-pref-skin-theme-value-os | radio | Automatic | for/id |
| #skin-client-pref-skin-theme-value-day | radio | Light | for/id |
| #skin-client-pref-skin-theme-value-night | radio | Dark | for/id |
| #vector-user-links-dropdown-checkbox | checkbox | Personal tools | aria-label |
| #vector-variants-dropdown-checkbox | checkbox | Change language variant | aria-label |
| #vector-page-tools-dropdown-checkbox | checkbox | Tools | aria-label |
| search | search | (Search mediawiki.org) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="search" name="search">
Placeholder-only labels disappear when the user starts typing — they must remember what the field was for.
Learn more ▾ ▴
Placeholders are NOT labels. They vanish on input, fail color contrast checks (most are gray), and don't satisfy WCAG SC 3.3.2. Always use a real <label> alongside (or aria-labelledby).
Source: WCAG 2.1 SC 3.3.2 / Nielsen Norman
A+Color Contrast (Screenshot)20 text elements analyzed, 0 fail WCAG AAPASS
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h1 MediaWiki is a colla… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 MediaWiki is a colla… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title MediaWiki | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Jump to content | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Main menu | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div Main menu | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| button move to sidebar | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| button hide | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div Navigation | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Main page | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Get MediaWiki | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Get extensions | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Tech blog | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Contribute | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| div Support | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span User help | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span FAQ | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Technical manual | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Support desk | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Communication | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
Methodology: The top 20 text elements by font size were checked. Background color was sampled from the desktop screenshot using a 5-point pattern. WCAG 2.1 AA requires 4.5:1 for normal text and 3:1 for large text.