Skip to content
https://newsbreak.com

Accessibility

· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.
SCORE
61
GRADE
D
FIX
6
REVIEW
3
PASS
4
INFO
0
Checks
13
4 PASS 3 REVIEW 6 FIX
D
Heading Hierarchy
Action
46 headings, 1 skip(s)
FIX
46 headings, 1 skip(s)
Critical::
No H1 heading found
Every page should have one H1 that describes the page content.
Warning::
Heading level skipped: H2 → H4 (missing H3)
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Warning::
2 empty heading(s)
Empty headings appear in the document outline but provide no information.
  • H3 (empty)
  • H3 About NewsBreak
  • H3 Partner with us
  • H3 (empty)
  • H3 Follow us
  • H2 Latest local headlines
  • H4 Fox News skipped
  • H3 House Democrats demand Kash Patel take alcohol test under penalty of perjury after Atlantic report
  • H4 CBS News
  • H3 Crypto mogul sues Trump family's World Liberty Financial, alleging fraud
  • H4 CNN
  • H3 Spirit Airlines close to a $500 million bailout from Trump administration
  • H4 NBC News
  • H3 Family of teen girl found dead in trunk of singer D4vd's Tesla says 'all we want is justice'
  • H4 ABC News
  • H3 Texas court interpreter detained by ICE says she's been 'treated like a criminal'
  • H4 Fox News
  • H3 Republicans eye ending government shutdowns forever over fears Dems will do it again
  • H4 The Associated Press
  • H3 The Gates Foundation is reviewing its Epstein ties as released emails raise questions for funders
  • H4 UPI News
  • H3 Iranian forces attack, seize two cargo ships near Strait of Hormuz
  • H4 NBC News
  • H3 Senate hopeful Graham Platner calls to investigate Trump and impeach two Supreme Court justices
  • H4 CBS News
  • H3 It's not just gasoline. Iran war could drive prices higher for many products.
  • H4 Fox News
  • H3 Supreme Court liberals side with Clarence Thomas on Taliban suicide bomber lawsuit, 3 others dissent
  • H4 The Associated Press
  • H3 Supreme Court rules for Michigan in its fight to shut down an aging energy pipeline
  • H4 Fortune
  • H3 The housing affordability crisis isn’t just crushing millennials—it’s squeezing out buyers in their 40s, 50s, and beyond, too
  • H4 NBC News
  • H3 El Salvador holds mass trial for 486 alleged gang members
  • H4 abcnews.com
  • H3 Dave Mason, co-founder of Traffic known for 'We Just Disagree' and 'Feelin’ Alright,' dies at 79
  • H4 Fox News
  • H3 Marine veteran allegedly gunned down by husband in attack outside home, police say
  • H4 PBS NewsHour
  • H3 Sheinbaum weighs sanctions on Chihuahua state after CIA agents died in Mexico drug lab raid
  • H4 CNBC
  • H3 Mortgage rates sink again, and homebuyers jump back in
  • H4 CNN
  • H3 Devin Nunes steps down as head of Trump’s struggling media company
  • H4 NBC News
  • H3 Man who swiped Noem's purse in a D.C. restaurant is sentenced to 3 years in prison

Every page should have one H1 that describes the page content.

Why this matters

No H1 means screen-reader users can't identify the page's primary topic, and Google's content-extraction degrades.

Learn more

The H1 is the document title for assistive tech and a strong signal to search engines about page topic. Pages without one force screen readers to fall back to the <title> attribute or page chrome. Add a single H1 that names the page's primary subject.

Source: WCAG 2.4.6 / Google Search Central

Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.

Why this matters

Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.

Learn more

Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.

Source: WCAG 2.1 SC 1.3.1 / W3C WAI

Empty headings appear in the document outline but provide no information.

Why this matters

Empty <hN> tags break the document outline — screen-reader users navigating by heading hit dead silence.

Source: WCAG 2.4.6

D
404 Error Page
Action
HTTP 410, custom page
FIX
HTTP 410, custom page
Warning::
Unexpected status code: HTTP 410
Expected HTTP 404 but received 410. This may confuse search engine crawlers.
Got: HTTP 410
Info::
Custom styled 404 page
Info::
Navigation links present on 404 page
Info::
Homepage link present on 404 page
404 Page Quality Custom 404 Page
Status Code HTTP 410 Page Title NewsBreak: Local & Breaking - Find out what’s happening in your neighborhood Custom Styling Navigation Homepage Link Search Form
D
Dark Mode Support
Action
No dark mode signals
FIX
No dark mode signals
Info::
No dark mode signals detected
Consider adding CSS with @media (prefers-color-scheme: dark) and <meta name='color-scheme' content='light dark'>.
Info::
Detection limited to meta tags and inline styles
External CSS files may contain prefers-color-scheme rules not visible to this scan.
Dark ModeNo Dark Mode Detected
color-scheme meta Not set Dark theme-color Not set CSS indicators Not detected

Detection limited to meta tags and inline styles.

D
Print Stylesheet
Action
No print styles
FIX
No print styles
Info::
No print-specific styles detected
When users print this page, they get the screen layout including navigation and non-essential elements. Add @media print rules to hide navigation and optimize layout for paper.
Print Stylesheet No Print Styles
Print stylesheet Not found Inline @media print Not detected
F
Navigation UX
Action
1 navigation pattern(s)
FIX
1 navigation pattern(s)
Info::
Breadcrumb navigation detected
Got: aria-label
Info::
1 navigation landmark(s) detected
Breadcrumbs aria-label navigation
Search
Skip Link
Labeled Navigation 1 <nav> element(s)
Back to Top
Hamburger Menu
Sticky Navigation Cannot reliably detect (CSS-based)
2 of 6 testable patterns navigation patterns detected. Limited navigation support. Consider adding breadcrumbs, search, and skip link.
B
Landmark Structure
3 landmarks
REVIEW
3 landmarks
Info::
<main> landmark present
Info::
1 <nav> landmark(s) found
Info::
No contentinfo (footer) landmark
Warning::
Skip navigation link is missing (WCAG 2.4.1)
Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.
Page Structure — as a screen reader sees it
BANNER header NAV "breadcrumb" MAIN CONTENTINFO (missing!)

Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.

Why this matters

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

C
Alt Text Quality
Action
120 of 246 images have issues
REVIEW
120 of 246 images have issues
Critical::
120 image(s) missing alt attribute
Images without alt text are invisible to screen readers.
Info::
1 image(s) with alt text over 125 characters
Info::
120 decorative image(s) correctly marked
Info::
5 image(s) with good alt text
246 images 5 good alt text 120 decorative 120 missing
IssueCount
missing120 image(s)
too long1 image(s)

Images without alt text are invisible to screen readers.

Why this matters

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

C
Lighthouse Accessibility Audits
Action
Score 79/100 — 7 failing, 22 passed
REVIEW
79

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
div > header.left-0 > section.flex-row-0 > button.text-[16px] div > header.left-0 > section.flex-row-0 > button.text-[16px]
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
div.flex > div > div.relative > button div.flex > div > div.relative > button
section.my-1 > div.flex > a.hover:text-green-500 > button.flex section.my-1 > div.flex > a.hover:text-green-500 > button.flex

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
ul > div.gap-y-2 > div.flex > a.w-6 ul > div.gap-y-2 > div.flex > a.w-6
ul > div.gap-y-2 > div.flex > a.w-6 ul > div.gap-y-2 > div.flex > a.w-6
ul > div.gap-y-2 > div.flex > a.w-6 ul > div.gap-y-2 > div.flex > a.w-6

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. Learn how to provide sufficient color contrast.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Open in NewsBreak div.fixed > div.flex-1 > a > div.md:hidden
Open a > div.flex > div > button.text-center
Local div.flex > div.flex-grow > a.text-black/60 > div.textsoverflow

These are opportunities to improve the legibility of your content.

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Fox News div.w-full > div.overflow-hidden > div.flex > h4.text-black/85

These are opportunities to improve keyboard navigation in your application.

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
©2025 NewsBreak. All Rights Reserved. div > nav.fixed > section.mb-8 > ul

These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.

Best practices

Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Next Page div.px-4 > div.flex > button.px-8 > a

These items highlight common accessibility best practices.

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Open in NewsBreak section.flex-row-0 > div.fixed > div.flex-1 > a
Fox News partner publisher · 2.0M followers div.flex > div.border-b > section.my-1 > a
House Democrats demand Kash Patel take alcohol test under penalty of perjury af… section.my-1 > section.flex > div.flex-1 > a
1K div.border-b > section.my-1 > div.flex > a.hover:text-green-500
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
CBS News partner publisher · 2.2M followers div.flex > div.border-b > section.my-1 > a
Crypto mogul sues Trump family's World Liberty Financial, alleging fraud Sun a… section.my-1 > section.flex > div.flex-1 > a
23 div.border-b > section.my-1 > div.flex > a.hover:text-green-500
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
CNN partner publisher · 3.0M followers div.flex > div.border-b > section.my-1 > a
Spirit Airlines close to a $500 million bailout from Trump administration Spir… section.my-1 > section.flex > div.flex-1 > a
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
NBC News publisher · 766.2K followers div.flex > div.border-b > section.my-1 > a
Family of teen girl found dead in trunk of singer D4vd's Tesla says 'all we wan… section.my-1 > section.flex > div.flex-1 > a
Los Angeles, CA ·  section.flex > div.flex-1 > div.flex > a.flex
71 div.border-b > section.my-1 > div.flex > a.hover:text-green-500
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
ABC News partner publisher · 1.8M followers div.flex > div.border-b > section.my-1 > a
Texas court interpreter detained by ICE says she's been 'treated like a crimina… section.my-1 > section.flex > div.flex-1 > a
Raymondville, TX ·  section.flex > div.flex-1 > div.flex > a.flex
158 div.border-b > section.my-1 > div.flex > a.hover:text-green-500
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
Fox News partner publisher · 2.0M followers div.flex > div.border-b > section.my-1 > a
Republicans eye ending government shutdowns forever over fears Dems will do it … section.my-1 > section.flex > div.flex-1 > a
15 div.border-b > section.my-1 > div.flex > a.hover:text-green-500
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
The Associated Press partner publisher · 2.3M followers div.flex > div.border-b > section.my-1 > a
The Gates Foundation is reviewing its Epstein ties as released emails raise que… section.my-1 > section.flex > div.flex-1 > a
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
UPI News partner publisher · 781.6K followers div.flex > div.border-b > section.my-1 > a
Iranian forces attack, seize two cargo ships near Strait of Hormuz Iran's mili… section.my-1 > section.flex > div.flex-1 > a
59 div.border-b > section.my-1 > div.flex > a.hover:text-green-500
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
NBC News publisher · 766.2K followers div.flex > div.border-b > section.my-1 > a
Senate hopeful Graham Platner calls to investigate Trump and impeach two Suprem… section.my-1 > section.flex > div.flex-1 > a
70 div.border-b > section.my-1 > div.flex > a.hover:text-green-500
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
CBS News partner publisher · 2.2M followers div.flex > div.border-b > section.my-1 > a
It's not just gasoline. Iran war could drive prices higher for many products. … section.my-1 > section.flex > div.flex-1 > a
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
Fox News partner publisher · 2.0M followers div.flex > div.border-b > section.my-1 > a
Supreme Court liberals side with Clarence Thomas on Taliban suicide bomber laws… section.my-1 > section.flex > div.flex-1 > a
65 div.border-b > section.my-1 > div.flex > a.hover:text-green-500
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
The Associated Press partner publisher · 2.3M followers div.flex > div.border-b > section.my-1 > a
Supreme Court rules for Michigan in its fight to shut down an aging energy pipe… section.my-1 > section.flex > div.flex-1 > a
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
Fortune partner publisher · 513.2K followers div.flex > div.border-b > section.my-1 > a
The housing affordability crisis isn’t just crushing millennials—it’s squeezing… section.my-1 > section.flex > div.flex-1 > a
49 div.border-b > section.my-1 > div.flex > a.hover:text-green-500
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
NBC News publisher · 766.2K followers div.flex > div.border-b > section.my-1 > a
El Salvador holds mass trial for 486 alleged gang members A Salvadoran court o… section.my-1 > section.flex > div.flex-1 > a
27 div.border-b > section.my-1 > div.flex > a.hover:text-green-500
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
abcnews.com website div.flex > div.border-b > section.my-1 > a
Dave Mason, co-founder of Traffic known for 'We Just Disagree' and 'Feelin’ Alr… section.my-1 > section.flex > div.flex-1 > a
Gardnerville, NV ·  section.flex > div.flex-1 > div.flex > a.flex
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
Fox News partner publisher · 2.0M followers div.flex > div.border-b > section.my-1 > a
Marine veteran allegedly gunned down by husband in attack outside home, police … section.my-1 > section.flex > div.flex-1 > a
Wichita, KS ·  section.flex > div.flex-1 > div.flex > a.flex
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
CNBC website div.flex > div.border-b > section.my-1 > a
Mortgage rates sink again, and homebuyers jump back in The average rate for 30… section.my-1 > section.flex > div.flex-1 > a
20 div.border-b > section.my-1 > div.flex > a.hover:text-green-500
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
CNN partner publisher · 3.0M followers div.flex > div.border-b > section.my-1 > a
Devin Nunes steps down as head of Trump’s struggling media company The company… section.my-1 > section.flex > div.flex-1 > a
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
NBC News publisher · 766.2K followers div.flex > div.border-b > section.my-1 > a
Man who swiped Noem's purse in a D.C. restaurant is sentenced to 3 years in pri… section.my-1 > section.flex > div.flex-1 > a
Washington, DC ·  section.flex > div.flex-1 > div.flex > a.flex
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
ABC News partner publisher · 1.8M followers div.flex > div.border-b > section.my-1 > a
Baby girl found abandoned in stroller in Times Square, search underway for fath… section.my-1 > section.flex > div.flex-1 > a
Share div.border-b > section.my-1 > div.flex > button.jsx-3878513889
NewsBreak App Open div.w-full > div.bg-white > div > a
Interactive controls are keyboard focusable
Interactive elements indicate their purpose and state
The page has a logical tab order
Visual order on the page follows DOM order
User focus is not accidentally trapped in a region
The user's focus is directed to new content added to the page
HTML5 landmark elements are used to improve navigation
Offscreen content is hidden from assistive technology
Custom controls have associated labels
Custom controls have ARIA roles
`[aria-*]` attributes match their roles
`[aria-hidden="true"]` is not present on the document `<body>`
`[role]`s have all required `[aria-*]` attributes
`[role]` values are valid
`[aria-*]` attributes have valid values
`[aria-*]` attributes are valid and not misspelled
Image elements have `[alt]` attributes
`[user-scalable="no"]` is not used in the `<meta name="viewport">` element and the `[maximum-scale]` attribute is not less than 5.
ARIA attributes are used as specified for the element's role
`[aria-hidden="true"]` elements do not contain focusable descendents
Elements use only permitted ARIA attributes
Document has a `<title>` element
`<frame>` or `<iframe>` elements have a title
`<html>` element has a `[lang]` attribute
`<html>` element has a valid value for its `[lang]` attribute
Links are distinguishable without relying on color.
List items (`<li>`) are contained within `<ul>`, `<ol>` or `<menu>` parent elements
No element has a `[tabindex]` value greater than 0
Document has a main landmark.
Deprecated ARIA roles were not used
All heading elements contain content.
Identical links have the same purpose.
`[accesskey]` values are unique
`button`, `link`, and `menuitem` elements have accessible names
Elements with `role="dialog"` or `role="alertdialog"` have accessible names.
ARIA input fields have accessible names
ARIA `meter` elements have accessible names
ARIA `progressbar` elements have accessible names
Elements with an ARIA `[role]` that require children to contain a specific `[role]` have all required children.
`[role]`s are contained by their required parent element
Elements with the `role=text` attribute do not have focusable descendents.
ARIA toggle fields have accessible names
ARIA `tooltip` elements have accessible names
ARIA `treeitem` elements have accessible names
The page contains a heading, skip link, or landmark region
`<dl>`'s contain only properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements.
Definition list items are wrapped in `<dl>` elements
ARIA IDs are unique
No form fields have multiple labels
`<html>` element has an `[xml:lang]` attribute with the same base language as the `[lang]` attribute.
Input buttons have discernible text.
`<input type="image">` elements have `[alt]` text
Form elements have associated labels
The document does not use `<meta http-equiv="refresh">`
`<object>` elements have alternate text
Select elements have associated label elements.
Skip links are focusable.
Cells in a `<table>` element that use the `[headers]` attribute refer to table cells within the same table.
`<th>` elements and elements with `[role="columnheader"/"rowheader"]` have data cells they describe.
`[lang]` attributes have a valid value
`<video>` elements contain a `<track>` element with `[kind="captions"]`
Tables have different content in the summary attribute and `<caption>`.
Uses ARIA roles only on compatible elements
Image elements do not have `[alt]` attributes that are redundant text.
Tables use `<caption>` instead of cells with the `[colspan]` attribute to indicate a caption.
`<td>` elements in a large `<table>` have one or more table headers.
A+
Form Accessibility
No form controls
PASS
No form controls
Info::
No form controls on this page
No form controls found.
A
Favicon & Branding
13 icon(s) detected
PASS
13 icon(s) detected
Info::
favicon.ico present at site root
Info::
HTML icon links detected
Info::
Apple touch icon present
Info::
SVG favicon detected — scales perfectly to any size
Info::
Multiple icon sizes detected
favicon.ico Present
PNG Icons Present
Apple Touch Present
SVG Favicon Present
Manifest Icons Present
Multiple Sizes Present
A+
Web Manifest
PWA-ready
PASS
PWA-ready
Info::
Meets PWA install criteria
Info::
Name present: NewsBreak: Local News & Alert
Info::
192x192 icon present
Info::
512x512 icon present
Info::
Display mode: minimal-ui
PWA Install Criteria Installable
Name NewsBreak: Local News & Alert 192×192 icon 512×512 icon Start URL /?source=pwa Display Mode minimal-ui
Name NewsBreak: Local News & Alert Display Mode minimal-ui Theme Color #ffffff Background Color #ffffff Icons 3 icon(s)
A+
Color Contrast (Screenshot)
20 text elements analyzed, 0 fail WCAG AA
PASS

Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.

20 pass
Show all checked elements (20)
ElementRatioRequiredFGBGResult
h2 Latest local headlin…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 About NewsBreak21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Partner with us21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Follow us21.00:13.0:1
#000000
#FFFFFF
Pass
h3 House Democrats dema…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Crypto mogul sues Tr…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Spirit Airlines clos…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Family of teen girl …21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Texas court interpre…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Republicans eye endi…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 The Gates Foundation…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Iranian forces attac…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Senate hopeful Graha…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 It's not just gasoli…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Supreme Court libera…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Supreme Court rules …21.00:13.0:1
#000000
#FFFFFF
Pass
h3 The housing affordab…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 El Salvador holds ma…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Dave Mason, co-found…21.00:13.0:1
#000000
#FFFFFF
Pass
h3 Marine veteran alleg…21.00:13.0: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.

All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback