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>
28 lines
809 B
Text
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;
|