Rocky_Mountain_Vending/.pnpm-store/v10/files/f9/c436b5ca0fe77a2d2a6d8b58fda7619cfed810a1483583a083430f751575bdb0dc8c3ecc1361d613950a137099e0f1e8eaa256629ce5c41d253eefec005994
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
796 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 check that the visual layout of the page matches the DOM.
*/
class VisualOrderFollowsDOM extends ManualAudit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return Object.assign({
id: 'visual-order-follows-dom',
description: 'DOM order matches the visual order, improving navigation for assistive technology. [Learn more about DOM and visual ordering](https://developer.chrome.com/docs/lighthouse/accessibility/visual-order-follows-dom/).',
title: 'Visual order on the page follows DOM order',
}, super.partialMeta);
}
}
export default VisualOrderFollowsDOM;