Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
BLink & Button Quality4 issue(s) across 76 links and 43 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://twitter.com/NDLJP | X | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/@nationaldietlib… | YouTube | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
Add '(opens in new tab)' to link text or aria-label.
https://twitter.com/NDLJP; https://www.youtube.com/@nationaldietlibraryjapan4964
Links with target="_blank" without rel="noopener" leak the originating page's window context — security and UX issue.
Learn more ▾ ▴
Without rel="noopener", the new tab can navigate the original tab via window.opener (tab-nabbing attack). Modern browsers default to noopener for target=_blank but only since recent versions. Always set rel="noopener noreferrer" explicitly.
Source: MDN target / OWASP
Icon-only buttons need an aria-label so screen readers can announce them.
button.base-button (#549 on page); button.base-button (#752 on page); button.base-button (#923 on page); button.scroll-back-button (#1136 on page)
Buttons with no accessible text (icon-only, no aria-label) can't be activated by voice control or understood by screen readers.
Source: WCAG 2.1 SC 4.1.2
B404 Error PageHTTP 404, custom pageREVIEW
CFavicon & BrandingAction3 icon(s) detectedREVIEW
BLighthouse Accessibility AuditsScore 85/100 — 5 failing, 23 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.
Names and labels
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.base-layout-column > div.base-layout-column > a > button.base-button div.base-layout-column > div.base-layout-column > a > button.base-button |
div.base-layout-column > div.base-layout-column > a > button.base-button div.base-layout-column > div.base-layout-column > a > button.base-button |
div.base-layout-column > div.base-layout-column > a > button.base-button div.base-layout-column > div.base-layout-column > a > button.base-button |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.base-panel > div.base-layout-column > div.base-layout-row > a.lang-link div.base-panel > div.base-layout-column > div.base-layout-row > a.lang-link |
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.
Tables and lists
Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
X div.base-layout-column > ul.base-layout-row > li.base-layout-column > ul.base-layout-column |
Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
X li.base-layout-column > ul.base-layout-column > div.base-layout-row > li.base-layout-column |
YouTube li.base-layout-column > ul.base-layout-column > div.base-layout-row > li.base-layout-column |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
もっと見る div.base-layout-container > div.base-layout-container-inner > div.base-layout-column > button.base-button |
ALandmark Structure5 landmarksPASS
Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.
Without a skip-nav link, keyboard users tab through every nav item before reaching content — every page, every visit.
Learn more ▾ ▴
WCAG 2.4.1 (Bypass Blocks) requires a mechanism to skip past repeated content. The standard implementation is a 'Skip to main content' link that's the first focusable element, visually hidden until focused. Three lines of HTML + four of CSS.
Source: WCAG 2.1 SC 2.4.1
AHeading Hierarchy11 headingsPASS
- H1 国立国会図書館
- H1 国立国会図書館 duplicate H1
- H2 重要なお知らせ
- H2 資料を検索
- H2 ピックアップ
- H2 おしらせ RSS
- H2 来館案内
- H3 東京本館
- H3 関西館
- H3 国際子ども図書館
- H3 国立国会図書館でのクッキーの使用
A page should have only one H1. Multiple H1s dilute the document outline.
Multiple H1s blur the page's primary topic — screen-reader users and Google both prefer one H1.
Learn more ▾ ▴
HTML5's outline algorithm technically allows multiple H1s within sectioning content, but no browser implements it. In practice: one H1 per page. Use H2-H6 for subsections.
Source: WCAG 2.4.6 / Google Search Central
AAlt Text Quality1 of 9 images have issuesPASS
| Issue | Count |
|---|---|
| generic | 1 image(s) |
| too long | 3 image(s) |
AForm Accessibility1 of 3 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #h-search-select | select | 検索対象 | aria-label |
| #h-search | search | 検索キーワード | aria-label |
| #hp-top-search | search | (資料を検索) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="search" id="hp-top-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 |
|---|---|---|---|---|---|
| h2 重要なお知ら… | 15.17:1 | 3.0:1 | #000000 | #DBDBDB | Pass |
| h2 資料を検索 | 15.17:1 | 3.0:1 | #000000 | #DBDBDB | Pass |
| h2 ピックアップ | 15.17:1 | 3.0:1 | #000000 | #DBDBDB | Pass |
| h2 おしらせ | 15.17:1 | 3.0:1 | #000000 | #DBDBDB | Pass |
| h2 来館案内 | 15.17:1 | 3.0:1 | #000000 | #DBDBDB | Pass |
| h3 東京本館 | 15.17:1 | 3.0:1 | #000000 | #DBDBDB | Pass |
| h3 関西館 | 15.17:1 | 3.0:1 | #000000 | #DBDBDB | Pass |
| h3 国際子ども図… | 15.17:1 | 3.0:1 | #000000 | #DBDBDB | Pass |
| h3 国立国会図書… | 15.17:1 | 3.0:1 | #000000 | #DBDBDB | Pass |
| title 国立国会図書… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a 本文へ移動 | 20.62:1 | 4.5:1 | #000000 | #FCFDFE | Pass |
| option サイト内 | 20.16:1 | 4.5:1 | #000000 | #F7FBFC | Pass |
| option 資料 | 20.16:1 | 4.5:1 | #000000 | #F7FBFC | Pass |
| span 検索 | 20.16:1 | 4.5:1 | #000000 | #F7FBFC | Pass |
| span ヘルプ | 20.16:1 | 4.5:1 | #000000 | #F7FBFC | Pass |
| button English | 20.16:1 | 4.5:1 | #000000 | #F7FBFC | Pass |
| a ホーム | 20.16:1 | 4.5:1 | #000000 | #F7FBFC | Pass |
| button 国会関連情報 | 20.16:1 | 4.5:1 | #000000 | #F7FBFC | Pass |
| button 資料・情報の… | 20.16:1 | 4.5:1 | #000000 | #F7FBFC | Pass |
| button 来館案内 | 20.16:1 | 4.5:1 | #000000 | #F7FBFC | 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.