Rocky_Mountain_Vending/.pnpm-store/v10/files/69/3cfbcfd9895065de39eada033ff0b076ed75fb2e2028282a5fa5300c3917270cd54ba320f9777a1d32df1bcaa91e49d426df21e5f8639723f7b8edcbf5ffc5
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
776 B
Text

/**
* @license
* Copyright 2017 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import ManualAudit from '../../manual/manual-audit.js';
/**
* @fileoverview Manual A11y audit for focusing new content that's added to the page.
*/
class ManagedFocus extends ManualAudit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return Object.assign({
id: 'managed-focus',
description: 'If new content, such as a dialog, is added to the page, the user\'s focus is directed to it. [Learn how to direct focus to new content](https://developer.chrome.com/docs/lighthouse/accessibility/managed-focus/).',
title: 'The user\'s focus is directed to new content added to the page',
}, super.partialMeta);
}
}
export default ManagedFocus;