Rocky_Mountain_Vending/.pnpm-store/v10/files/f4/f60252561637097f217087e2f20f6b3b8b8ec59469e50ef360d8e948b4a4e52ea6885c09710180dd891f5b51dab79aac2f657d910af45e37104bcd75a5cad4
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
737 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 assert custom controls have associated roles.
*/
class CustomControlsRoles extends ManualAudit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return Object.assign({
id: 'custom-controls-roles',
description: 'Custom interactive controls have appropriate ARIA roles. [Learn how to add roles to custom controls](https://developer.chrome.com/docs/lighthouse/accessibility/custom-control-roles/).',
title: 'Custom controls have ARIA roles',
}, super.partialMeta);
}
}
export default CustomControlsRoles;