Rocky_Mountain_Vending/.pnpm-store/v10/files/ab/546234b568f635a9284c6bdd2f4e2d8463ce56bac18003935b8176bd14a9cb1b28d313f7a7a9df68783b32cb1d5fb1f7e22830c01b705cda535156b6860e81
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

28 lines
809 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 offscreen content is hidden from
* assistive technology.
*/
class OffscreenContentHidden extends ManualAudit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return Object.assign({
id: 'offscreen-content-hidden',
description: 'Offscreen content is hidden with display: none or aria-hidden=true. [Learn how to properly hide offscreen content](https://developer.chrome.com/docs/lighthouse/accessibility/offscreen-content-hidden/).',
title: 'Offscreen content is hidden from assistive technology',
}, super.partialMeta);
}
}
export default OffscreenContentHidden;