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

推荐订阅源

A
About on SuperTechFans
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
宝玉的分享
宝玉的分享
美团技术团队
量子位
The Cloudflare Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
爱范儿
爱范儿
J
Java Code Geeks
博客园 - Franky
Last Week in AI
Last Week in AI
B
Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
GbyAI
GbyAI
Recent Announcements
Recent Announcements
小众软件
小众软件
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog

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
Sisyphus would have loved Skip Links & Page Structure | T...
Laura Wissia · 2026-05-06 · via DEV Community

As we continue our journey toward becoming certified Trusted Testers, this session reinforced that accessibility is just as much about creating a predictable, logical, and efficient experience for everyone.

Topic 9: Repetitive Content

‘Repetitive Content’ means parts which are the same across multiple pages of a website. We want to ensure that users can bypass repeated blocks and navigate consistently across the same website.

9.A. Bypass Function (WCAG 2.4.1)

The goal is to allow users to jump straight to the main content, without having to plow through the same thing over and over. Instead, what we want is a keyboard-accessible mechanism that allows us to skip over blocks of content repeated on multiple pages, e.g. navigation, footer, or sidebar. “Skip to Main Content” links are the most well-known mechanisms for this, but other bypass methods like hotkeys or scripted elements also exist.

This test does not apply to single-page sites (like a standalone survey) or sites where repeated content is limited to small sections, e.g. single words or individual links.

9.B. Consistent Navigation (WCAG 3.2.3)

Consistency is key, not only in skincare. If a user learns the layout of one page, they should be able to expect the same layout on the next.

Navigational mechanisms repeated across pages must occur in the same relative order. The exact text of the links can change (e.g., “Next Page” vs. “Continue”), but the order of the navigation elements relative to each other must remain constant.

How to test: Compare the Reading Order and Tab Order across pages using ANDI to ensure the sequence of elements (e.g., Logo -> Search -> Menu -> Footer) to check if they remain consistent.

9.C. Consistent Identification (WCAG 3.2.4)

This criterion ensures that components performing the same function are identified consistently across the site. Users rely on consistent naming to build mental models of the site. If a search icon is labeled “Search” on the homepage but “Find” or “Locate” on internal pages, it fails.

Function Over Form: An “X” icon might mean “Delete” on one page and “Deny” on another. This is acceptable only if the accessible name (text alternative) reflects the specific function (e.g., “Delete Document” vs. “Deny Request”).

Topic 10: Content Structure

The second half of the session shifted to how content is organized. Assistive technologies rely on code to understand the page hierarchy, not just visual styling.

10.A. Heading Purpose (WCAG 2.4.6)

Headings must describe the topic or purpose of the content that follows them. This requires a manual inspection - or rather: simply using your brain - to compare the heading text against the content following it.

Our fail example was a shoe store page with a heading “Flat Shoes” but then followed by text describing stilettos and pumps, the complete opposite of what the heading references. The heading must accurately reflect the content. This test does not apply if a page has no visual headings, e.g., a simple news article with only body text.

10.B. Determinable Heading (WCAG 1.3.1)

This is a “two-way street” test:

  1. Every visual heading must be programmatically defined as a heading (<h1>–<h6>).
  2. Every programmatically defined heading must also be a visual heading.

It still happens far too often that people style text to look like a heading without using the proper HTML heading tags, or the opposite: use heading tags for emphasis.

10.C. Heading Level (also WCAG 1.3.1)

The hierarchy of headings must logically match the visual presentation. If a section is visually the most important, it should have the highest priority level (e.g., <h1>).

Be aware that testing and development differ here: While best practice suggests sequential levels h1 -> h2 -> h3 (with the h1 ideally also matching the URL slug), the Trusted Tester process actually allows skipping levels, if the visual structure supports it. However, the programmatic level must still make sense in context. If there is a conflict between HTML and ARIA-labels, ARIA takes precedence.

Even if it doesn’t impact Trusted Tester conformance, I would still suggest making a note of skipped heading levels in your test report.

10.D. Lists (again WCAG 1.3.1)

Another test criterion of the “if it looks like a thing, it should also be that thing” type: Visually apparent lists must be coded as lists (<ul>, <ol>, or <dl>). A numbered list created using CSS counters or just typing “1.”, “2.”, “3.” is not apparent to assistive technology. Proper list tags are:

  • <ul> Unordered Lists: These are typically bullet point lists (like this one!), where the order of the list items doesn’t matter.
  • <ol> Ordered Lists: Typically rendered as a numbered list, but you also probably have seen them starting with a) or i) before.
  • <dl> Description Lists: Less often seen than the two above, these lists enclose a list of groups of terms and descriptions. Think of a glossary listing multiple terms and their definitions.

Notable exception: Navigational menus that happen to be coded as lists but are part of the navigation framework (not main content) are excluded from this specific test.


Materials