You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import ManualAudit from '../../manual/manual-audit.js';
/**
* @fileoverview Manual A11y audit to check that landmark elements are used whenever possible.
*/
class UseLandmarks extends ManualAudit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return Object.assign({
id: 'use-landmarks',
description: 'Landmark elements (`<main>`, `<nav>`, etc.) are used to improve the keyboard navigation of the page for assistive technology. [Learn more about landmark elements](https://developer.chrome.com/docs/lighthouse/accessibility/use-landmarks/).',
title: 'HTML5 landmark elements are used to improve navigation',