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>
27 lines
742 B
Text
27 lines
742 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 focusable controls.
|
|
*/
|
|
|
|
class FocusableControls extends ManualAudit {
|
|
/**
|
|
* @return {LH.Audit.Meta}
|
|
*/
|
|
static get meta() {
|
|
return Object.assign({
|
|
id: 'focusable-controls',
|
|
description: 'Custom interactive controls are keyboard focusable and display a focus indicator. [Learn how to make custom controls focusable](https://developer.chrome.com/docs/lighthouse/accessibility/focusable-controls/).',
|
|
title: 'Interactive controls are keyboard focusable',
|
|
}, super.partialMeta);
|
|
}
|
|
}
|
|
|
|
export default FocusableControls;
|