report(render-blocking-stylesheets): improve actionability of helpText (#3544)

This commit is contained in:
Paul Irish 2017-10-12 14:41:00 -07:00 коммит произвёл Brendan Kenny
Родитель 1fca06e14d
Коммит 450d2d319d
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -30,9 +30,9 @@ class LinkBlockingFirstPaintAudit extends Audit {
name: 'link-blocking-first-paint',
description: 'Reduce render-blocking stylesheets',
informative: true,
helpText: 'Link elements are blocking the first paint of your page. Consider ' +
'inlining critical links and deferring non-critical ones. ' +
'[Learn more](https://developers.google.com/web/tools/lighthouse/audits/blocking-resources).',
helpText: 'External stylesheets are blocking the first paint of your page. Consider ' +
'delivering critical CSS via `<style>` tags and deferring non-critical ' +
'styles. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/blocking-resources).',
requiredArtifacts: ['TagsBlockingFirstPaint', 'traces'],
};
}