- Success Criterion 2.4.2
- Conformance level A
Page Title That Doesn’t Reflect the Current Step or State
2.4.2 — Page Titled
Scenario
Setting
A project-management tool's task board
What’s wrong
Search/results/step pages not reflecting state ("Checkout" on all 5 steps).
Example
<title>Board</title>
<!-- identical whether viewing Sprint 12, Backlog, or Q3 Roadmap --> Why it matters
A user with three different project boards open in tabs can't tell which board is which without clicking into each one.
How to test
Check titles on search results, multi-step forms, or status pages: if the title doesn't reflect the current state ('Checkout' shown identically on all 5 steps), it fails.
How to fix
Drive the title from the board's actual name so open tabs stay distinguishable.
function setBoardTitle(boardName) {
document.title = `${boardName} Board - ProjTrack`;
} Outcome
A user picks out the right sprint board from their open tabs without clicking through each one.
Who is affected
Users managing multiple boards, including those with cognitive disabilities, waste time re-checking tabs they can't distinguish.
Learn more
- Understanding Understanding document (opens in a new tab)
Related scenarios
- Page Title That Doesn’t Say What the Page Actually Is
- Page Published With a Missing or Empty Title Tag
- Identical Page Title Repeated Across an Entire Website
- Single-Page App Title That Never Updates Between Views
- Page Title That’s Just the Brand Name, No Topic
- Page Title Where the Distinguishing Word Gets Cut Off