Rocky_Mountain_Vending/.pnpm-store/v10/files/3b/84745270dd648e29845ac159c278493205937166c94e36e9c9094a3bcea1eef5841a3369e38f2fb6c52cf2fa400db79320682bcd89ed443d620b8db566e5e9
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

27 lines
744 B
Text

/**
* @license
* Copyright 2017 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import ManualAudit from '../../manual/manual-audit.js';
/**
* @fileoverview Manual A11y audit to avoid trapping keyboard focus in a region.
*/
class FocusTraps extends ManualAudit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return Object.assign({
id: 'focus-traps',
description: 'A user can tab into and out of any control or region without accidentally trapping their focus. [Learn how to avoid focus traps](https://developer.chrome.com/docs/lighthouse/accessibility/focus-traps/).',
title: 'User focus is not accidentally trapped in a region',
}, super.partialMeta);
}
}
export default FocusTraps;