Blog

The Death of Accessibility Overlays: Why the Industry Is Moving to Source Code

TestParty
TestParty
August 14, 2025

Overlay widgets failing to deliver accessibility compliance isn't just anecdote—it's documented reality. Over 700 accessibility advocates have signed statements opposing overlays. Major lawsuits continue against overlay-protected sites. The US Department of Justice has specifically warned that overlays don't provide ADA compliance. The death of overlays as a viable accessibility solution is playing out in courtrooms, procurement decisions, and technical evaluations across the industry.

This analysis covers why overlays failed, what's replacing them, and how source code remediation addresses the fundamental problems overlays couldn't solve.

Q: Why are accessibility overlays failing?

A: Accessibility overlays fail because they apply superficial fixes on top of inaccessible code rather than fixing the underlying problems. Screen readers and assistive technologies interact with the actual DOM—not overlay modifications. Overlays can't fix structural issues, often introduce new bugs, and have been rejected as compliance evidence in every major legal challenge.

The Rise and Fall of Overlay Solutions

The Promise (2015-2019)

Overlays entered the market promising:

  • "One line of code" accessibility
  • AI-powered automatic remediation
  • WCAG compliance without development effort
  • Legal protection from ADA lawsuits
  • Cost savings over traditional remediation

The appeal was obvious: organizations facing accessibility requirements could seemingly solve compliance with a JavaScript widget rather than expensive development projects.

The Reality (2020-Present)

What actually happened:

  • Lawsuits continued: Organizations using overlays were sued at the same or higher rates
  • Technical failures: Screen reader users reported overlays making sites worse
  • Legal rejection: Courts haven't accepted overlay use as compliance evidence
  • Expert opposition: Over 700 accessibility professionals signed the Overlay Fact Sheet
  • Market backlash: Disability community actively avoids and warns against overlay-using sites

Key Failures

Domino's Pizza (2019): Landmark case establishing website accessibility obligations—Domino's had an overlay. The Supreme Court let stand the Ninth Circuit ruling that websites must be accessible regardless of overlay presence.

Eyebobs (2021): Sued despite using an overlay widget. The lawsuit cited specific accessibility failures the overlay didn't address.

Multiple retail settlements (2020-2024): Companies settled accessibility lawsuits while actively using overlay products, demonstrating overlays provide no legal protection.

Why Overlays Can't Work

Technical Limitations

Overlays modify the DOM—screen readers read the DOM:

When an overlay "fixes" a missing button label, it typically:

  1. Detects the unlabeled button
  2. Attempts to inject an aria-label
  3. May create duplicate/conflicting labels
  4. Can't address the underlying code problem

Result: The button might announce incorrectly, announce twice, or create navigation confusion.

Structural issues can't be patched:

<!-- Original inaccessible structure -->
<div class="header">
  <span class="nav-item" onclick="navigate('/about')">About</span>
  <span class="nav-item" onclick="navigate('/products')">Products</span>
</div>

<!-- Overlay attempt to fix -->
<div class="header">
  <span class="nav-item" onclick="navigate('/about')" role="button" tabindex="0">About</span>
  <span class="nav-item" onclick="navigate('/products')" role="button" tabindex="0">Products</span>
</div>

The overlay added role and tabindex, but:

  • Keyboard users still can't activate with Enter/Space (no handler)
  • The onclick only fires on click events
  • Screen readers announce "About, button" but it doesn't work like a button
  • The actual fix requires changing the element to a real button or link

Overlays can't fix:

  • Missing or broken keyboard handlers
  • Illogical heading structure
  • Complex custom widget behavior
  • Time-based content issues
  • Cognitive accessibility problems
  • PDF inaccessibility
  • Video caption content
  • Actual content alternatives

AI Limitations

Overlay vendors claim "AI-powered" fixes, but:

Image alt text generation:

  • AI can guess image content
  • AI can't determine image purpose
  • A photo of people might need "Team members celebrating product launch" or "decorative image" depending on context
  • Only humans understand content intent

Context blindness:

  • AI doesn't understand your business logic
  • Can't determine which elements are critical
  • Doesn't know user journey priorities
  • Makes generic fixes for specific needs

False confidence:

  • AI-generated fixes often seem correct
  • Testing reveals frequent errors
  • Errors may be worse than original issues
  • No accountability for AI mistakes

Detection Failures

Overlays can only attempt to fix what they detect. Automated detection misses 50-70% of WCAG issues:

Detectable (sometimes fixable):

  • Color contrast (can adjust)
  • Missing alt text (can guess)
  • Missing form labels (can attempt)
  • Language attribute (can add)

Undetectable (unfixable):

  • Alt text accuracy
  • Heading logic
  • Link purpose clarity
  • Reading order sense
  • Cognitive load
  • User flow accessibility

Performance Impact

Overlays add significant page weight:

  • JavaScript payload: 100-500KB additional
  • Runtime processing: Constant DOM monitoring
  • Network requests: Configuration fetches, usage tracking
  • Rendering delays: Reprocessing on page changes

For users who need accessibility most:

  • Slow loading affects screen reader initialization
  • Processing delays create interaction gaps
  • Heavy scripts can crash assistive technology
  • Mobile performance degraded significantly

Overlays Provide No Legal Protection

DOJ guidance (2022): The Department of Justice explicitly noted that overlays don't provide ADA compliance and don't substitute for accessibility.

Court precedents:

  • No court has accepted overlay use as compliance defense
  • Lawsuits continue against overlay-using organizations
  • Settlements don't include overlay implementation as remedy
  • Consent decrees require actual remediation, not overlays

Why overlays fail legally:

  1. ADA requires "effective communication" - overlays don't ensure this
  2. Reasonable accommodation - overlays aren't accommodation
  3. Ongoing violations - overlay presence doesn't cure underlying issues
  4. Expert testimony - accessibility experts testify against overlays

Lawsuit Volume

Organizations with overlays have been sued for accessibility failures at rates matching or exceeding those without overlays. The overlay provides:

  • No deterrent to plaintiff attorneys
  • No defense in litigation
  • No evidence of compliance efforts
  • Sometimes additional ammunition (showing awareness without action)

The Source Code Alternative

What Source Code Remediation Means

Source code fixes address accessibility at the code level:

<!-- Before: Inaccessible custom button -->
<div class="btn" onclick="doAction()">Submit</div>

<!-- After: Accessible implementation -->
<button type="submit" class="btn">Submit</button>

The difference:

  • Actually works with keyboard (Enter/Space)
  • Properly announced by screen readers
  • Works without JavaScript if needed
  • No additional scripts required
  • Permanent fix, not runtime patch

Why Source Code Works

Addresses root cause: Instead of patching symptoms, source code fixes remove accessibility barriers entirely.

Works with assistive technology: Screen readers, switches, voice control all interact with actual DOM—proper code creates proper interaction.

Permanent solutions: Fixed code stays fixed. No dependency on external scripts, services, or ongoing modification.

Better performance: Removing barriers rather than adding patches improves page performance.

Legally defensible: Actual code changes demonstrate genuine compliance effort and create accessible functionality.

Source Code Approaches

Manual remediation:

  • Developers fix issues identified in audits
  • Most thorough, most expensive
  • Best for complex custom components
  • Required for some issues regardless

Automated code generation:

  • Tools like TestParty generate fix code
  • Addresses high volume of common issues
  • Developers review and implement
  • Dramatically accelerates remediation

Template/component fixes:

  • Fix once, apply everywhere
  • Address design system components
  • Multiply impact of each fix
  • Prevent issue recurrence

Industry Shift Evidence

Enterprise Procurement Changes

Major organizations now explicitly exclude overlays:

Government requirements:

  • GSA accessibility requirements don't accept overlays
  • State accessibility mandates require actual compliance
  • Government contractors can't use overlays as solution

Enterprise policies:

  • Fortune 500 companies excluding overlays from procurement
  • RFPs specifically ask about source-level remediation
  • Vendor accessibility evaluations reject overlay solutions

Disability Community Response

The disability community has been clear:

[Overlay Fact Sheet](https://overlayfactsheet.com/):

  • Over 700 signatories (accessibility professionals, advocates, users)
  • Documents technical and ethical problems
  • Recommends against overlay use

User testimonials:

  • Screen reader users report overlays breaking sites
  • Keyboard users encounter new barriers from overlays
  • Users with cognitive disabilities find overlays confusing
  • Many users specifically block overlay scripts

Advocacy organization positions:

  • National Federation of the Blind has spoken against overlays
  • Multiple disability rights organizations oppose overlays
  • Legal defense organizations don't recommend overlays

Market Evolution

Overlay vendor pivots:

  • Some overlay companies now offer actual remediation services
  • Marketing increasingly emphasizes "beyond overlays"
  • Acquisitions bringing in actual accessibility expertise

New market entrants:

  • Source code remediation platforms emerging
  • CI/CD accessibility integration growing
  • Automated fix generation (like TestParty) replacing overlay approaches

TestParty: The Source Code Approach

TestParty represents the post-overlay approach to accessibility:

Source-level fixes:

  • Generates actual code changes
  • Fixes implemented in your codebase
  • No runtime JavaScript dependencies
  • Permanent accessibility improvements

AI that assists, not replaces:

  • AI generates fix suggestions
  • Human review ensures accuracy
  • CPACC-certified experts for complex cases
  • Accountability for fix quality

CI/CD integration:

  • Prevents new issues from shipping
  • Tests accessibility before deployment
  • Maintains compliance continuously
  • Shifts left in development process

Honest positioning:

  • Never claims "one line of code" fixes
  • Acknowledges limitations of automation
  • Partners with development teams
  • Focuses on genuine compliance

Migration from Overlays

Step 1: Remove the Overlay

  1. Document current state: Scan site with overlay active
  2. Remove overlay script: Delete widget code
  3. Baseline assessment: Scan site without overlay
  4. Identify actual issues: See what needs real fixes

Step 2: Prioritize Remediation

Focus on:

  1. Critical path blockers: Login, checkout, core functions
  2. High-impact issues: Keyboard navigation, form labels
  3. Legal risk issues: Commonly cited violations
  4. High-traffic pages: Homepage, product pages

Step 3: Implement Source Fixes

For common issues:

  • Use automated fix generation
  • Implement via standard deployment
  • Verify fixes with testing

For complex issues:

  • Engage accessibility experts
  • Design accessible solutions
  • Test with assistive technology

Step 4: Prevent Recurrence

  • Integrate accessibility into CI/CD
  • Block inaccessible code from shipping
  • Train developers on accessibility
  • Monitor continuously

FAQ Section

Q: If overlays don't work, why are they still sold?

A: Marketing to uninformed buyers who want easy solutions. Organizations without accessibility expertise can't evaluate overlay claims. Overlays remain profitable despite not providing claimed benefits—the market hasn't fully corrected yet.

Q: Can overlays be used as a temporary solution while fixing code?

A: Not recommended. Overlays often make accessibility worse, provide false confidence, and don't address legal risk. Better to prioritize critical issues in source code while working through full remediation. Overlays are never an improvement over nothing.

Q: What about overlays that claim to be "different" or "next-generation"?

A: All overlays share fundamental limitations: they modify the rendered page rather than fixing source code. Claims of AI advancement don't change the underlying technical reality. Evaluate any solution by asking: does it modify your actual code, or does it apply runtime patches?

Q: How long does source code remediation take compared to overlay installation?

A: Overlay installation takes minutes; source remediation takes weeks to months depending on site complexity. However, overlays don't actually achieve compliance, so comparing timelines is misleading. The real comparison: overlay provides false compliance (zero actual protection), while source remediation provides actual compliance over its implementation timeline.

Q: Won't removing our overlay expose us to lawsuits?

A: Your overlay isn't protecting you from lawsuits—organizations with overlays are sued regularly. Removing the overlay and implementing actual fixes reduces legal risk. The overlay was never providing protection, just the appearance of action without substance.

Key Takeaways

  • Overlays have failed by every measure: Technical performance, legal protection, user experience, and expert evaluation all reject overlay approaches.
  • The fundamental problem is technical: Overlays can't fix what's wrong with inaccessible code—they only mask symptoms while creating new problems.
  • Legal risk remains unchanged: No court accepts overlays as compliance evidence. Lawsuits continue against overlay users at normal rates.
  • The industry is moving to source code: Enterprise procurement, government requirements, and technical evolution all favor actual code fixes.
  • Source code remediation works: Fixing actual code addresses root causes, works with assistive technology, and provides legally defensible compliance.
  • The disability community has spoken: Overlays are rejected by the people they claim to help.

Conclusion

The death of overlays isn't prediction—it's documentation of an ongoing industry correction. Organizations that adopted overlays hoping for easy compliance are discovering they paid for solutions that don't solve the problem. The industry is responding by shifting to source code remediation: fixing actual accessibility barriers rather than patching over them.

For organizations still using overlays, the path forward is clear: remove the overlay, assess actual accessibility issues, and implement source-level fixes. The compliance you thought you were buying doesn't exist; actual compliance requires actual accessible code.

TestParty represents the post-overlay approach: source code fixes generated by AI, reviewed by experts, implemented in your codebase, and maintained through CI/CD integration. No runtime scripts, no JavaScript dependencies, no false promises—just accessible code.

Ready to move beyond overlays to actual compliance? Get a free accessibility scan to see your real accessibility status and learn how source code remediation achieves genuine compliance.


Related Articles:


Our editorial process combines AI capabilities with human accessibility knowledge to produce well-researched content. TestParty focuses on source code accessibility fixes for e-commerce sites, but every business has unique needs. Consult with professionals before acting on any information here.

Stay informed

Accessibility insights delivered
straight to your inbox.

Contact Us

Automate the software work for accessibility compliance, end-to-end.

Empowering businesses with seamless digital accessibility solutions—simple, inclusive, effective.

Book a Demo