Rocky_Mountain_Vending/.pnpm-store/v10/files/34/5822e2b96d3998ed0c2fe54dfac0495a909c15d68a1859939f09fa5b5b81d7b95138eb105de66407738c3c0ea1ec3d1492a998df01a50d8610b6d955c8c48b
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
751 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 tab order that follows DOM order.
*/
class LogicalTabOrder extends ManualAudit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return Object.assign({
id: 'logical-tab-order',
description: 'Tabbing through the page follows the visual layout. Users cannot focus elements that are offscreen. [Learn more about logical tab ordering](https://developer.chrome.com/docs/lighthouse/accessibility/logical-tab-order/).',
title: 'The page has a logical tab order',
}, super.partialMeta);
}
}
export default LogicalTabOrder;