惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
G
Google Developers Blog
H
Help Net Security
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog RSS Feed
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
GbyAI
GbyAI
D
Docker
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
博客园 - 司徒正美
Last Week in AI
Last Week in AI
Microsoft Security Blog
Microsoft Security Blog
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The European Accessibility Act Is Live — Developer Guide
DevToolsmith · 2026-04-29 · via DEV Community

DevToolsmith

The European Accessibility Act Is Live — Developer Guide

The European Accessibility Act (EAA) entered force on 28 June 2025. By April 2026, six member states have published enforcement actions, three SMEs have received fines between €5,000 and €40,000, and DG Internal Market is publishing quarterly compliance reports. If your website serves EU consumers and you're not WCAG 2.1 AA compliant, you are now operating in non-compliance territory.

This is the developer-focused breakdown.

What the EAA actually covers

The EAA isn't just "make websites accessible." It's a market harmonization directive. It applies to:

  • E-commerce (any B2C selling)
  • Banking & financial services (consumer-facing)
  • E-books and dedicated reading software
  • Transport (ticketing, info terminals)
  • Telecom services (consumer-facing)
  • Audiovisual media services (access services)
  • ATMs, payment terminals, ticketing machines
  • Smartphones, computers, TVs (the hardware itself)

If you sell anything to a consumer in the EU through a website, you're in scope. The 250-employee / €50M turnover micro-enterprise exemption applies only to services, not products. And national rules go beyond the EAA in Spain, France, and Germany.

What "accessible" technically means

The EAA defers to EN 301 549, which adopts WCAG 2.1 AA for web content. Some member states are pushing WCAG 2.2 (added in October 2023) — better start there.

The four POUR principles:

  • Perceivable: text alternatives, captions, contrast 4.5:1 for normal text, 3:1 for large text
  • Operable: keyboard navigation, no seizure-inducing flashes, focus visible
  • Understandable: predictable navigation, error identification, input assistance
  • Robust: parses validly, ARIA used correctly, name/role/value exposed

A WCAG 2.2 AA conformance review = approximately 78 success criteria. A passing site needs all of them.

The 24-hour developer audit

You can do this without paying €15,000 for a Siteimprove license:

Hour 1 — Automated baseline

# axe-core via Playwright
npx playwright test --reporter=html
# OR free online: WAVE, Lighthouse, Pa11y

Enter fullscreen mode Exit fullscreen mode

Automated tools catch ~30% of issues. Don't stop here.

Hour 2-4 — Keyboard-only manual sweep

Unplug the mouse. Tab through every page. Check:

  • Focus visible at all times
  • All interactive elements reachable
  • Skip-to-content link near top
  • Modal dialogs trap focus correctly
  • ESC dismisses overlays

Hour 5-8 — Screen reader smoke test

NVDA (free, Windows) or VoiceOver (Mac). Read the homepage, a form, a checkout page, a search results page. Note where context is missing.

Hour 9-16 — Top 20 failure points

Run targeted audits:

  • Color contrast (every text/bg pair)
  • Form labels (every input has visible + programmatic label)
  • Image alt text (every <img> has alt OR alt="" if decorative)
  • Heading order (H1 → H2 → H3, no skips)
  • Link text (no "click here", "read more")
  • Page language declared (<html lang>)
  • ARIA used minimally (prefer semantic HTML)
  • Error messages associated with inputs (aria-describedby)

Hour 17-20 — Accessibility statement

The EAA requires a public statement at /accessibility with:

  • Conformance level (full / partial / non-conformant)
  • Inaccessible content list
  • Alternative access methods
  • Contact for accessibility complaints
  • Date of last review
  • Enforcement procedure link

We publish a free template at fixmyweb.dev/accessibility-statement-generator.

Hour 21-24 — Fix the top 5 issues

You won't fix everything in 24h. Pick the 5 highest-impact:

  1. Color contrast violations
  2. Missing form labels
  3. Missing alt text on content images
  4. Keyboard traps
  5. Missing skip-link

That's a 50% reduction in audit findings, achievable in one work day.

The 201-check superset

We compiled a checklist of every automated WCAG 2.2 rule plus manual heuristics: 201 individual checks. It maps to:

  • WCAG 2.0 + 2.1 + 2.2
  • EN 301 549 v3.2.1
  • Section 508 Refresh

That's the exact rule set our scanner runs at fixmyweb.dev. Free tier: 3 scans no card, full report download. Paid tiers exist if you need monitoring.

The hard truth

The companies fined in 2025-2026 weren't malicious. They had outdated CMSes, third-party widgets that broke accessibility, contrast violations on hero gradient overlays, and no alt text on auto-generated thumbnails. Boring failures, expensive consequences.

If you ship anything to EU consumers, run the audit this week. Fix the top 5. Publish the statement. That puts you ahead of 70% of the EU SMB market. The remaining 30% has 12-18 months before they all get audited.


Antonio Altomonte builds accessibility and compliance tools at DevToolsmith. WCAG scanner free tier: fixmyweb.dev.