Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

report(description): update helpText for document.title audit #4677

Merged
merged 1 commit into from
Mar 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lighthouse-core/audits/accessibility/document-title.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ class DocumentTitle extends AxeAudit {
return {
name: 'document-title',
description: 'Document has a `<title>` element',
failureDescription: 'Document does not have a `<title>` element',
helpText: 'Screen reader users use page titles to get an overview of the contents of ' +
'the page. ' +
'[Learn more](https://dequeuniversity.com/rules/axe/2.2/document-title?application=lighthouse).',
failureDescription: 'Document doesn\'t have a `<title>` element',
helpText: 'The title gives screen reader users an overview of the page, and search ' +
'engine users rely on it heavily to determine if a page is relevant to their search. ' +
'[Learn more](https://developers.google.com/web/tools/lighthouse/audits/title).',
requiredArtifacts: ['Accessibility'],
};
}
Expand Down