@browserless.io/browserless 2.2.0-beta-6 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -2
- package/bin/browserless.js +1 -1
- package/bin/scaffold/README.md +8 -7
- package/build/browserless.js +7 -6
- package/build/browsers/chrome.cdp.d.ts +6 -0
- package/build/browsers/chrome.cdp.js +6 -0
- package/build/browsers/chrome.playwright.d.ts +6 -0
- package/build/browsers/chrome.playwright.js +6 -0
- package/build/browsers/{cdp-chromium.d.ts → chromium.cdp.d.ts} +3 -2
- package/build/browsers/{cdp-chromium.js → chromium.cdp.js} +16 -10
- package/build/browsers/{playwright-chromium.d.ts → chromium.playwright.d.ts} +3 -2
- package/build/browsers/{playwright-chromium.js → chromium.playwright.js} +6 -5
- package/build/browsers/{playwright-firefox.d.ts → firefox.playwright.d.ts} +2 -2
- package/build/browsers/{playwright-firefox.js → firefox.playwright.js} +4 -4
- package/build/browsers/index.d.ts +20 -10
- package/build/browsers/index.js +110 -11
- package/build/browsers/{playwright-webkit.d.ts → webkit.playwright.d.ts} +2 -2
- package/build/browsers/{playwright-webkit.js → webkit.playwright.js} +4 -4
- package/build/data/selectors.json +1 -1
- package/build/exports.d.ts +6 -4
- package/build/exports.js +6 -4
- package/build/http.d.ts +22 -1
- package/build/http.js +21 -0
- package/build/router.js +19 -3
- package/build/routes/{chromium/http/content-post.body.json → chrome/http/content.post.body.json} +8 -8
- package/build/routes/chrome/http/content.post.d.ts +7 -0
- package/build/routes/chrome/http/content.post.js +6 -0
- package/build/routes/chrome/http/download.post.d.ts +7 -0
- package/build/routes/chrome/http/download.post.js +6 -0
- package/build/routes/chrome/http/function.post.d.ts +7 -0
- package/build/routes/chrome/http/function.post.js +6 -0
- package/build/routes/chrome/http/json-list.get.d.ts +1 -0
- package/build/routes/chrome/http/json-list.get.js +1 -0
- package/build/routes/chrome/http/json-new.put.d.ts +1 -0
- package/build/routes/chrome/http/json-new.put.js +1 -0
- package/build/routes/chrome/http/json-protocol.get.d.ts +1 -0
- package/build/routes/chrome/http/json-protocol.get.js +1 -0
- package/build/routes/chrome/http/json-version.get.d.ts +1 -0
- package/build/routes/chrome/http/json-version.get.js +1 -0
- package/build/routes/chrome/http/json-version.get.response.json +44 -0
- package/build/routes/{chromium/http/pdf-post.body.json → chrome/http/pdf.post.body.json} +8 -8
- package/build/routes/chrome/http/pdf.post.d.ts +7 -0
- package/build/routes/chrome/http/pdf.post.js +6 -0
- package/build/routes/chrome/http/performance.post.d.ts +7 -0
- package/build/routes/chrome/http/performance.post.js +6 -0
- package/build/routes/{chromium/http/scrape-post.body.json → chrome/http/scrape.post.body.json} +8 -8
- package/build/routes/chrome/http/scrape.post.d.ts +7 -0
- package/build/routes/chrome/http/scrape.post.js +6 -0
- package/build/routes/{chromium/http/screenshot-post.body.json → chrome/http/screenshot.post.body.json} +8 -8
- package/build/routes/chrome/http/screenshot.post.d.ts +7 -0
- package/build/routes/chrome/http/screenshot.post.js +6 -0
- package/build/routes/chrome/tests/content.spec.js +311 -0
- package/build/routes/chrome/tests/download.spec.js +67 -0
- package/build/routes/chrome/tests/function.spec.d.ts +1 -0
- package/build/routes/chrome/tests/function.spec.js +245 -0
- package/build/routes/chrome/tests/json-version.spec.d.ts +1 -0
- package/build/routes/chrome/tests/json-version.spec.js +37 -0
- package/build/routes/chrome/tests/page-websocket.spec.d.ts +1 -0
- package/build/routes/chrome/tests/page-websocket.spec.js +97 -0
- package/build/routes/chrome/tests/pdf.spec.d.ts +1 -0
- package/build/routes/chrome/tests/pdf.spec.js +333 -0
- package/build/routes/chrome/tests/performance.spec.d.ts +1 -0
- package/build/routes/chrome/tests/performance.spec.js +124 -0
- package/build/routes/chrome/tests/scrape.spec.d.ts +1 -0
- package/build/routes/chrome/tests/scrape.spec.js +354 -0
- package/build/routes/chrome/tests/screenshot.spec.d.ts +1 -0
- package/build/routes/chrome/tests/screenshot.spec.js +339 -0
- package/build/routes/chrome/tests/websocket.spec.d.ts +1 -0
- package/build/routes/chrome/tests/websocket.spec.js +371 -0
- package/build/routes/chrome/ws/browser.d.ts +6 -0
- package/build/routes/chrome/ws/browser.js +5 -0
- package/build/routes/chrome/ws/cdp.d.ts +7 -0
- package/build/routes/chrome/ws/cdp.js +6 -0
- package/build/routes/chrome/ws/cdp.query.json +120 -0
- package/build/routes/chrome/ws/page.d.ts +6 -0
- package/build/routes/chrome/ws/page.js +5 -0
- package/build/routes/chrome/ws/page.query.json +120 -0
- package/build/routes/chrome/ws/playwright.d.ts +7 -0
- package/build/routes/chrome/ws/playwright.js +6 -0
- package/build/routes/chromium/http/content.post.body.json +510 -0
- package/build/routes/chromium/http/content.post.d.ts +1 -0
- package/build/routes/chromium/http/content.post.js +1 -0
- package/build/routes/chromium/http/content.post.query.json +183 -0
- package/build/routes/chromium/http/content.post.response.json +5 -0
- package/build/routes/chromium/http/download.post.body.json +32 -0
- package/build/routes/chromium/http/download.post.d.ts +1 -0
- package/build/routes/chromium/http/download.post.js +1 -0
- package/build/routes/chromium/http/download.post.query.json +120 -0
- package/build/routes/chromium/http/download.post.response.json +4 -0
- package/build/routes/chromium/http/function.post.body.json +32 -0
- package/build/routes/chromium/http/function.post.d.ts +1 -0
- package/build/routes/chromium/http/function.post.js +1 -0
- package/build/routes/chromium/http/function.post.query.json +120 -0
- package/build/routes/chromium/http/function.post.response.json +4 -0
- package/build/routes/chromium/http/json-list.get.d.ts +1 -0
- package/build/routes/chromium/http/json-list.get.js +1 -0
- package/build/routes/chromium/http/json-list.get.response.json +52 -0
- package/build/routes/chromium/http/json-new.put.d.ts +1 -0
- package/build/routes/chromium/http/json-new.put.js +1 -0
- package/build/routes/chromium/http/json-new.put.response.json +44 -0
- package/build/routes/chromium/http/json-protocol.get.d.ts +1 -0
- package/build/routes/chromium/http/json-protocol.get.js +1 -0
- package/build/routes/chromium/http/json-protocol.get.response.json +6 -0
- package/build/routes/chromium/http/json-version.get.d.ts +1 -0
- package/build/routes/chromium/http/json-version.get.js +1 -0
- package/build/routes/chromium/http/json-version.get.response.json +44 -0
- package/build/routes/chromium/http/pdf.post.body.json +654 -0
- package/build/routes/chromium/http/pdf.post.d.ts +1 -0
- package/build/routes/chromium/http/pdf.post.js +1 -0
- package/build/routes/chromium/http/pdf.post.query.json +120 -0
- package/build/routes/chromium/http/pdf.post.response.json +5 -0
- package/build/routes/chromium/http/performance.post.body.json +26 -0
- package/build/routes/chromium/http/performance.post.d.ts +1 -0
- package/build/routes/chromium/http/performance.post.js +1 -0
- package/build/routes/chromium/http/performance.post.query.json +120 -0
- package/build/routes/chromium/http/performance.post.response.json +7 -0
- package/build/routes/chromium/http/scrape.post.body.json +557 -0
- package/build/routes/chromium/http/scrape.post.d.ts +1 -0
- package/build/routes/chromium/http/scrape.post.js +1 -0
- package/build/routes/chromium/http/scrape.post.query.json +183 -0
- package/build/routes/chromium/http/scrape.post.response.json +309 -0
- package/build/routes/chromium/http/screenshot.post.body.json +600 -0
- package/build/routes/chromium/http/screenshot.post.d.ts +1 -0
- package/build/routes/chromium/http/screenshot.post.js +1 -0
- package/build/routes/chromium/http/screenshot.post.query.json +120 -0
- package/build/routes/chromium/http/screenshot.post.response.json +5 -0
- package/build/routes/chromium/tests/content.spec.js +16 -16
- package/build/routes/chromium/tests/download.spec.js +3 -3
- package/build/routes/chromium/tests/function.spec.js +10 -10
- package/build/routes/chromium/tests/page-websocket.spec.d.ts +1 -0
- package/build/routes/chromium/tests/page-websocket.spec.js +97 -0
- package/build/routes/chromium/tests/pdf.spec.js +16 -16
- package/build/routes/chromium/tests/performance.spec.js +7 -7
- package/build/routes/chromium/tests/scrape.spec.js +15 -15
- package/build/routes/chromium/tests/screenshot.spec.js +17 -17
- package/build/routes/chromium/tests/websocket.spec.js +31 -37
- package/build/routes/chromium/ws/browser.d.ts +1 -16
- package/build/routes/chromium/ws/browser.js +1 -10
- package/build/routes/chromium/ws/cdp.d.ts +1 -0
- package/build/routes/chromium/ws/cdp.js +1 -0
- package/build/routes/chromium/ws/cdp.query.json +120 -0
- package/build/routes/chromium/ws/page.d.ts +1 -16
- package/build/routes/chromium/ws/page.js +1 -10
- package/build/routes/chromium/ws/playwright.d.ts +1 -0
- package/build/routes/chromium/ws/playwright.js +1 -0
- package/build/routes/firefox/ws/{playwright-firefox.d.ts → playwright.d.ts} +5 -5
- package/build/routes/firefox/ws/{playwright-firefox.js → playwright.js} +4 -4
- package/build/routes/management/http/{sessions-get.response.json → sessions.get.response.json} +11 -1
- package/build/routes/management/http/{static-get.js → static.get.js} +2 -2
- package/build/routes/webkit/ws/{playwright-webkit.d.ts → playwright.d.ts} +5 -5
- package/build/routes/webkit/ws/{playwright-webkit.js → playwright.js} +4 -4
- package/build/routes/webkit/ws/playwright.query.json +100 -0
- package/build/{routes/chromium/ws/cdp-chromium.d.ts → shared/browser.ws.d.ts} +4 -4
- package/build/shared/browser.ws.js +12 -0
- package/build/{routes/chromium/ws/playwright-chromium.d.ts → shared/chromium.playwright.ws.d.ts} +4 -4
- package/build/{routes/chromium/ws/playwright-chromium.js → shared/chromium.playwright.ws.js} +6 -3
- package/build/shared/chromium.ws.d.ts +16 -0
- package/build/shared/chromium.ws.js +10 -0
- package/build/{routes/chromium/http/content-post.d.ts → shared/content.http.d.ts} +3 -3
- package/build/{routes/chromium/http/content-post.js → shared/content.http.js} +3 -3
- package/build/{routes/chromium/http/download-post.d.ts → shared/download.http.d.ts} +3 -3
- package/build/{routes/chromium/http/download-post.js → shared/download.http.js} +4 -4
- package/build/{routes/chromium/http/function-post.d.ts → shared/function.http.d.ts} +3 -3
- package/build/{routes/chromium/http/function-post.js → shared/function.http.js} +4 -4
- package/build/{routes/chromium/http/json-new.d.ts → shared/json-list.http.d.ts} +2 -3
- package/build/{routes/chromium/http/json-list.js → shared/json-list.http.js} +5 -8
- package/build/{routes/chromium/http/json-list.d.ts → shared/json-new.http.d.ts} +2 -3
- package/build/shared/json-new.http.js +34 -0
- package/build/{routes/chromium/http/json-protocol-get.js → shared/json-protocol.http.js} +2 -2
- package/build/{routes/chromium/http/json-version-get.js → shared/json-version.http.js} +3 -3
- package/build/shared/page.ws.d.ts +16 -0
- package/build/shared/page.ws.js +13 -0
- package/build/{routes/chromium/http/pdf-post.d.ts → shared/pdf.http.d.ts} +3 -3
- package/build/{routes/chromium/http/pdf-post.js → shared/pdf.http.js} +3 -3
- package/build/{routes/chromium/http/performance.d.ts → shared/performance.http.d.ts} +3 -3
- package/build/{routes/chromium/http/performance.js → shared/performance.http.js} +4 -4
- package/build/{routes/chromium/http/scrape-post.d.ts → shared/scrape.http.d.ts} +3 -3
- package/build/{routes/chromium/http/scrape-post.js → shared/scrape.http.js} +3 -3
- package/build/{routes/chromium/http/screenshot-post.d.ts → shared/screenshot.http.d.ts} +3 -3
- package/build/{routes/chromium/http/screenshot-post.js → shared/screenshot.http.js} +3 -3
- package/build/shared/utils/performance/child.d.ts +1 -0
- package/build/{routes/chromium → shared}/utils/performance/main.js +1 -1
- package/build/shared/utils/performance/types.js +1 -0
- package/build/shim.js +2 -1
- package/build/types.d.ts +10 -8
- package/build/utils.d.ts +8 -3
- package/build/utils.js +24 -11
- package/docker/base/Dockerfile +1 -1
- package/docker/chrome/Dockerfile +4 -4
- package/docker/chromium/.dockerignore +16 -0
- package/docker/chromium/Dockerfile +40 -0
- package/docker/firefox/Dockerfile +1 -1
- package/docker/multi/Dockerfile +13 -1
- package/docker/webkit/Dockerfile +1 -1
- package/extensions/ublock/3p-filters.html +1 -1
- package/extensions/ublock/_locales/ar/messages.json +4 -0
- package/extensions/ublock/_locales/az/messages.json +4 -0
- package/extensions/ublock/_locales/be/messages.json +4 -0
- package/extensions/ublock/_locales/bg/messages.json +5 -1
- package/extensions/ublock/_locales/bn/messages.json +4 -0
- package/extensions/ublock/_locales/br_FR/messages.json +6 -2
- package/extensions/ublock/_locales/bs/messages.json +4 -0
- package/extensions/ublock/_locales/ca/messages.json +4 -0
- package/extensions/ublock/_locales/cs/messages.json +4 -0
- package/extensions/ublock/_locales/cv/messages.json +4 -0
- package/extensions/ublock/_locales/cy/messages.json +1294 -0
- package/extensions/ublock/_locales/da/messages.json +4 -0
- package/extensions/ublock/_locales/de/messages.json +5 -1
- package/extensions/ublock/_locales/el/messages.json +4 -0
- package/extensions/ublock/_locales/en/messages.json +4 -0
- package/extensions/ublock/_locales/en_GB/messages.json +4 -0
- package/extensions/ublock/_locales/eo/messages.json +9 -5
- package/extensions/ublock/_locales/es/messages.json +4 -0
- package/extensions/ublock/_locales/et/messages.json +4 -0
- package/extensions/ublock/_locales/eu/messages.json +8 -4
- package/extensions/ublock/_locales/fa/messages.json +4 -0
- package/extensions/ublock/_locales/fi/messages.json +4 -0
- package/extensions/ublock/_locales/fil/messages.json +4 -0
- package/extensions/ublock/_locales/fr/messages.json +4 -0
- package/extensions/ublock/_locales/fy/messages.json +4 -0
- package/extensions/ublock/_locales/gl/messages.json +4 -0
- package/extensions/ublock/_locales/gu/messages.json +4 -0
- package/extensions/ublock/_locales/he/messages.json +4 -0
- package/extensions/ublock/_locales/hi/messages.json +4 -0
- package/extensions/ublock/_locales/hr/messages.json +4 -0
- package/extensions/ublock/_locales/hu/messages.json +4 -0
- package/extensions/ublock/_locales/hy/messages.json +4 -0
- package/extensions/ublock/_locales/id/messages.json +5 -1
- package/extensions/ublock/_locales/it/messages.json +4 -0
- package/extensions/ublock/_locales/ja/messages.json +4 -0
- package/extensions/ublock/_locales/ka/messages.json +34 -30
- package/extensions/ublock/_locales/kk/messages.json +4 -0
- package/extensions/ublock/_locales/kn/messages.json +4 -0
- package/extensions/ublock/_locales/ko/messages.json +4 -0
- package/extensions/ublock/_locales/ku/messages.json +4 -0
- package/extensions/ublock/_locales/lt/messages.json +4 -0
- package/extensions/ublock/_locales/lv/messages.json +4 -0
- package/extensions/ublock/_locales/mk/messages.json +4 -0
- package/extensions/ublock/_locales/ml/messages.json +4 -0
- package/extensions/ublock/_locales/mr/messages.json +4 -0
- package/extensions/ublock/_locales/ms/messages.json +13 -9
- package/extensions/ublock/_locales/nb/messages.json +4 -0
- package/extensions/ublock/_locales/nl/messages.json +4 -0
- package/extensions/ublock/_locales/no/messages.json +4 -0
- package/extensions/ublock/_locales/oc/messages.json +4 -0
- package/extensions/ublock/_locales/pa/messages.json +4 -0
- package/extensions/ublock/_locales/pl/messages.json +5 -1
- package/extensions/ublock/_locales/pt_BR/messages.json +4 -0
- package/extensions/ublock/_locales/pt_PT/messages.json +4 -0
- package/extensions/ublock/_locales/ro/messages.json +5 -1
- package/extensions/ublock/_locales/ru/messages.json +4 -0
- package/extensions/ublock/_locales/si/messages.json +4 -0
- package/extensions/ublock/_locales/sk/messages.json +4 -0
- package/extensions/ublock/_locales/sl/messages.json +4 -0
- package/extensions/ublock/_locales/so/messages.json +4 -0
- package/extensions/ublock/_locales/sq/messages.json +4 -0
- package/extensions/ublock/_locales/sr/messages.json +4 -0
- package/extensions/ublock/_locales/sv/messages.json +4 -0
- package/extensions/ublock/_locales/sw/messages.json +4 -0
- package/extensions/ublock/_locales/ta/messages.json +4 -0
- package/extensions/ublock/_locales/te/messages.json +4 -0
- package/extensions/ublock/_locales/th/messages.json +12 -8
- package/extensions/ublock/_locales/tr/messages.json +4 -0
- package/extensions/ublock/_locales/uk/messages.json +4 -0
- package/extensions/ublock/_locales/ur/messages.json +4 -0
- package/extensions/ublock/_locales/vi/messages.json +4 -0
- package/extensions/ublock/_locales/zh_CN/messages.json +6 -2
- package/extensions/ublock/_locales/zh_TW/messages.json +6 -2
- package/extensions/ublock/assets/assets.json +11 -11
- package/extensions/ublock/assets/resources/scriptlets.js +660 -378
- package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +7173 -3455
- package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +18829 -1918
- package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +21 -26
- package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +118 -46
- package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +710 -1117
- package/extensions/ublock/assets/ublock/badlists.txt +0 -4
- package/extensions/ublock/assets/ublock/badware.min.txt +116 -105
- package/extensions/ublock/assets/ublock/filters.min.txt +1443 -1097
- package/extensions/ublock/assets/ublock/privacy.min.txt +50 -31
- package/extensions/ublock/assets/ublock/quick-fixes.min.txt +97 -108
- package/extensions/ublock/assets/ublock/unbreak.min.txt +64 -21
- package/extensions/ublock/css/1p-filters.css +4 -0
- package/extensions/ublock/css/3p-filters.css +6 -4
- package/extensions/ublock/css/common.css +1 -1
- package/extensions/ublock/css/fa-icons.css +1 -0
- package/extensions/ublock/css/logger-ui.css +72 -52
- package/extensions/ublock/css/popup-fenix.css +1 -1
- package/extensions/ublock/img/fontawesome/fontawesome-defs.svg +1 -0
- package/extensions/ublock/js/3p-filters.js +3 -3
- package/extensions/ublock/js/assets.js +7 -4
- package/extensions/ublock/js/background.js +1 -3
- package/extensions/ublock/js/benchmarks.js +1 -0
- package/extensions/ublock/js/broadcast.js +12 -0
- package/extensions/ublock/js/click2load.js +2 -3
- package/extensions/ublock/js/codemirror/ubo-static-filtering.js +1 -0
- package/extensions/ublock/js/commands.js +10 -0
- package/extensions/ublock/js/contentscript-extra.js +13 -11
- package/extensions/ublock/js/contentscript.js +0 -31
- package/extensions/ublock/js/contextmenu.js +5 -1
- package/extensions/ublock/js/dyna-rules.js +83 -52
- package/extensions/ublock/js/fa-icons.js +1 -0
- package/extensions/ublock/js/filtering-context.js +0 -2
- package/extensions/ublock/js/i18n.js +1 -5
- package/extensions/ublock/js/logger-ui.js +71 -38
- package/extensions/ublock/js/logger.js +18 -14
- package/extensions/ublock/js/messaging.js +17 -5
- package/extensions/ublock/js/popup-fenix.js +6 -6
- package/extensions/ublock/js/scriptlet-filtering-core.js +14 -12
- package/extensions/ublock/js/scriptlet-filtering.js +149 -53
- package/extensions/ublock/js/scriptlets/scriptlet-loglevel-1.js +49 -0
- package/extensions/ublock/js/scriptlets/scriptlet-loglevel-2.js +49 -0
- package/extensions/ublock/js/scriptlets/should-inject-contentscript.js +1 -1
- package/extensions/ublock/js/static-dnr-filtering.js +4 -2
- package/extensions/ublock/js/static-filtering-parser.js +14 -8
- package/extensions/ublock/js/static-net-filtering.js +32 -30
- package/extensions/ublock/js/storage.js +18 -4
- package/extensions/ublock/js/traffic.js +3 -3
- package/extensions/ublock/js/ublock.js +1 -1
- package/extensions/ublock/js/vapi-background.js +15 -7
- package/extensions/ublock/logger-ui.html +18 -10
- package/extensions/ublock/manifest.json +4 -1
- package/extensions/ublock/web_accessible_resources/chartbeat.js +3 -0
- package/package.json +12 -11
- package/scripts/build-function.js +1 -1
- package/scripts/build-open-api.js +3 -2
- package/scripts/clean.js +6 -1
- package/scripts/install-debugger.js +20 -0
- package/scripts/install-devtools.js +40 -0
- package/src/browserless.ts +11 -9
- package/src/browsers/chrome.cdp.ts +10 -0
- package/src/browsers/chrome.playwright.ts +10 -0
- package/src/browsers/{cdp-chromium.ts → chromium.cdp.ts} +20 -13
- package/src/browsers/{playwright-chromium.ts → chromium.playwright.ts} +7 -6
- package/src/browsers/{playwright-firefox.ts → firefox.playwright.ts} +5 -5
- package/src/browsers/index.ts +160 -23
- package/src/browsers/{playwright-webkit.ts → webkit.playwright.ts} +5 -5
- package/src/exports.ts +6 -4
- package/src/http.ts +21 -0
- package/src/router.ts +21 -5
- package/src/routes/chrome/http/content.post.ts +14 -0
- package/src/routes/chrome/http/download.post.ts +14 -0
- package/src/routes/chrome/http/function.post.ts +14 -0
- package/src/routes/chrome/http/json-list.get.ts +1 -0
- package/src/routes/chrome/http/json-new.put.ts +1 -0
- package/src/routes/chrome/http/json-protocol.get.ts +1 -0
- package/src/routes/chrome/http/json-version.get.ts +1 -0
- package/src/routes/chrome/http/pdf.post.ts +14 -0
- package/src/routes/chrome/http/performance.post.ts +14 -0
- package/src/routes/chrome/http/scrape.post.ts +14 -0
- package/src/routes/chrome/http/screenshot.post.ts +14 -0
- package/src/routes/chrome/tests/content.spec.ts +375 -0
- package/src/routes/chrome/tests/download.spec.ts +77 -0
- package/src/routes/chrome/tests/function.spec.ts +282 -0
- package/src/routes/chrome/tests/json-version.spec.ts +52 -0
- package/src/routes/chrome/tests/page-websocket.spec.ts +129 -0
- package/src/routes/chrome/tests/pdf.spec.ts +380 -0
- package/src/routes/chrome/tests/performance.spec.ts +155 -0
- package/src/routes/chrome/tests/scrape.spec.ts +417 -0
- package/src/routes/chrome/tests/screenshot.spec.ts +387 -0
- package/src/routes/chrome/tests/websocket.spec.ts +491 -0
- package/src/routes/chrome/ws/browser.ts +8 -0
- package/src/routes/chrome/ws/cdp.ts +12 -0
- package/src/routes/chrome/ws/page.ts +8 -0
- package/src/routes/chrome/ws/playwright.ts +12 -0
- package/src/routes/chromium/http/content.post.ts +6 -0
- package/src/routes/chromium/http/download.post.ts +6 -0
- package/src/routes/chromium/http/function.post.ts +6 -0
- package/src/routes/chromium/http/json-list.get.ts +1 -0
- package/src/routes/chromium/http/json-new.put.ts +1 -0
- package/src/routes/chromium/http/json-protocol.get.ts +1 -0
- package/src/routes/chromium/http/json-version.get.ts +1 -0
- package/src/routes/chromium/http/pdf.post.ts +6 -0
- package/src/routes/chromium/http/performance.post.ts +6 -0
- package/src/routes/chromium/http/scrape.post.ts +6 -0
- package/src/routes/chromium/http/screenshot.post.ts +6 -0
- package/src/routes/chromium/tests/content.spec.ts +36 -28
- package/src/routes/chromium/tests/download.spec.ts +3 -3
- package/src/routes/chromium/tests/function.spec.ts +18 -15
- package/src/routes/chromium/tests/page-websocket.spec.ts +129 -0
- package/src/routes/chromium/tests/pdf.spec.ts +31 -26
- package/src/routes/chromium/tests/performance.spec.ts +46 -34
- package/src/routes/chromium/tests/scrape.spec.ts +23 -20
- package/src/routes/chromium/tests/screenshot.spec.ts +24 -24
- package/src/routes/chromium/tests/websocket.spec.ts +31 -40
- package/src/routes/chromium/ws/browser.ts +1 -29
- package/src/routes/chromium/ws/cdp.ts +1 -0
- package/src/routes/chromium/ws/page.ts +1 -29
- package/src/routes/chromium/ws/playwright.ts +4 -0
- package/src/routes/firefox/ws/{playwright-firefox.ts → playwright.ts} +5 -5
- package/src/routes/management/http/{static-get.ts → static.get.ts} +2 -2
- package/src/routes/webkit/ws/{playwright-webkit.ts → playwright.ts} +5 -5
- package/src/shared/browser.ws.ts +34 -0
- package/src/{routes/chromium/ws/playwright-chromium.ts → shared/chromium.playwright.ws.ts} +7 -4
- package/src/{routes/chromium/ws/cdp-chromium.ts → shared/chromium.ws.ts} +6 -6
- package/src/{routes/chromium/http/content-post.ts → shared/content.http.ts} +4 -4
- package/src/{routes/chromium/http/download-post.ts → shared/download.http.ts} +4 -4
- package/src/{routes/chromium/http/function-post.ts → shared/function.http.ts} +4 -4
- package/src/shared/json-list.http.ts +35 -0
- package/src/{routes/chromium/http/json-new.ts → shared/json-new.http.ts} +23 -7
- package/src/{routes/chromium/http/json-protocol-get.ts → shared/json-protocol.http.ts} +3 -5
- package/src/{routes/chromium/http/json-version-get.ts → shared/json-version.http.ts} +4 -5
- package/src/shared/page.ws.ts +35 -0
- package/src/{routes/chromium/http/pdf-post.ts → shared/pdf.http.ts} +4 -4
- package/src/{routes/chromium/http/performance.ts → shared/performance.http.ts} +4 -4
- package/src/{routes/chromium/http/scrape-post.ts → shared/scrape.http.ts} +4 -4
- package/src/{routes/chromium/http/screenshot-post.ts → shared/screenshot.http.ts} +4 -4
- package/src/{routes/chromium → shared}/utils/function/handler.ts +2 -2
- package/src/{routes/chromium → shared}/utils/performance/main.ts +1 -2
- package/src/shim.ts +2 -1
- package/src/types.ts +27 -20
- package/src/utils.ts +32 -14
- package/static/devtools/Images/accelerometer-back.svg +1 -0
- package/static/devtools/Images/accelerometer-bottom.png +0 -0
- package/static/devtools/Images/accelerometer-front.svg +1 -0
- package/static/devtools/Images/accelerometer-left.png +0 -0
- package/static/devtools/Images/accelerometer-right.png +0 -0
- package/static/devtools/Images/accelerometer-top.png +0 -0
- package/static/devtools/Images/baseline-icon.svg +1 -0
- package/static/devtools/Images/breaking_change_icon.svg +1 -0
- package/static/devtools/Images/checkboxCheckmark.svg +1 -0
- package/static/devtools/Images/checker.png +0 -0
- package/static/devtools/Images/chevrons.svg +1 -0
- package/static/devtools/Images/chromeDisabledSelect.png +0 -0
- package/static/devtools/Images/chromeDisabledSelect_2x.png +0 -0
- package/static/devtools/Images/chromeLeft.avif +0 -0
- package/static/devtools/Images/chromeMiddle.avif +0 -0
- package/static/devtools/Images/chromeRight.avif +0 -0
- package/static/devtools/Images/chromeSelect.svg +1 -0
- package/static/devtools/Images/chromeSelectDark.svg +1 -0
- package/static/devtools/Images/cssoverview_icons_2x.avif +0 -0
- package/static/devtools/Images/dropdown_7x6_icon.svg +1 -0
- package/static/devtools/Images/elements_panel_icon.svg +1 -0
- package/static/devtools/Images/errorWave.svg +1 -0
- package/static/devtools/Images/error_icon.svg +1 -0
- package/static/devtools/Images/feedback_thin_16x16_icon.svg +1 -0
- package/static/devtools/Images/flex-align-content-center-icon.svg +1 -0
- package/static/devtools/Images/flex-align-content-end-icon.svg +1 -0
- package/static/devtools/Images/flex-align-content-space-around-icon.svg +1 -0
- package/static/devtools/Images/flex-align-content-space-between-icon.svg +1 -0
- package/static/devtools/Images/flex-align-content-space-evenly-icon.svg +1 -0
- package/static/devtools/Images/flex-align-content-start-icon.svg +1 -0
- package/static/devtools/Images/flex-align-content-stretch-icon.svg +1 -0
- package/static/devtools/Images/flex-align-items-center-icon.svg +1 -0
- package/static/devtools/Images/flex-align-items-flex-end-icon.svg +1 -0
- package/static/devtools/Images/flex-align-items-flex-start-icon.svg +1 -0
- package/static/devtools/Images/flex-align-items-stretch-icon.svg +1 -0
- package/static/devtools/Images/flex-align-self-center-icon.svg +1 -0
- package/static/devtools/Images/flex-align-self-flex-end-icon.svg +1 -0
- package/static/devtools/Images/flex-align-self-flex-start-icon.svg +1 -0
- package/static/devtools/Images/flex-align-self-stretch-icon.svg +1 -0
- package/static/devtools/Images/flex-direction-icon.svg +1 -0
- package/static/devtools/Images/flex-justify-content-center-icon.svg +1 -0
- package/static/devtools/Images/flex-justify-content-flex-end-icon.svg +1 -0
- package/static/devtools/Images/flex-justify-content-flex-start-icon.svg +1 -0
- package/static/devtools/Images/flex-justify-content-space-around-icon.svg +1 -0
- package/static/devtools/Images/flex-justify-content-space-between-icon.svg +1 -0
- package/static/devtools/Images/flex-justify-content-space-evenly-icon.svg +1 -0
- package/static/devtools/Images/ic_checkmark_16x16.svg +3 -0
- package/static/devtools/Images/ic_delete_filter.svg +1 -0
- package/static/devtools/Images/ic_delete_list.svg +1 -0
- package/static/devtools/Images/ic_info_black_18dp.svg +1 -0
- package/static/devtools/Images/ic_page_next_16x16_icon.svg +1 -0
- package/static/devtools/Images/ic_page_prev_16x16_icon.svg +1 -0
- package/static/devtools/Images/ic_redo_16x16_icon.svg +1 -0
- package/static/devtools/Images/ic_show_node_16x16.svg +4 -0
- package/static/devtools/Images/ic_suggest_color.svg +6 -0
- package/static/devtools/Images/ic_undo_16x16_icon.svg +1 -0
- package/static/devtools/Images/ic_warning_black_18dp.svg +1 -0
- package/static/devtools/Images/issue-text-icon.svg +1 -0
- package/static/devtools/Images/largeIcons.svg +1 -0
- package/static/devtools/Images/lighthouse_logo.svg +1 -0
- package/static/devtools/Images/link_icon.svg +1 -0
- package/static/devtools/Images/mediumIcons.svg +1 -0
- package/static/devtools/Images/navigationControls.png +0 -0
- package/static/devtools/Images/navigationControls_2x.png +0 -0
- package/static/devtools/Images/network_panel_icon.svg +1 -0
- package/static/devtools/Images/nodeIcon.avif +0 -0
- package/static/devtools/Images/node_search_icon.svg +1 -0
- package/static/devtools/Images/popoverArrows.png +0 -0
- package/static/devtools/Images/profileGroupIcon.png +0 -0
- package/static/devtools/Images/profileIcon.png +0 -0
- package/static/devtools/Images/profileSmallIcon.png +0 -0
- package/static/devtools/Images/radioDot-dark-theme.png +0 -0
- package/static/devtools/Images/radioDot.png +0 -0
- package/static/devtools/Images/refresh_12x12_icon.svg +1 -0
- package/static/devtools/Images/resizeDiagonal.svg +1 -0
- package/static/devtools/Images/resizeHorizontal.svg +1 -0
- package/static/devtools/Images/resizeVertical.svg +1 -0
- package/static/devtools/Images/resourceCSSIcon.png +0 -0
- package/static/devtools/Images/resourceDocumentIcon.png +0 -0
- package/static/devtools/Images/resourceDocumentIconSmall.png +0 -0
- package/static/devtools/Images/resourceJSIcon.png +0 -0
- package/static/devtools/Images/resourcePlainIcon.png +0 -0
- package/static/devtools/Images/resourcePlainIconSmall.png +0 -0
- package/static/devtools/Images/resourcesTimeGraphIcon.avif +0 -0
- package/static/devtools/Images/searchNext.png +0 -0
- package/static/devtools/Images/searchPrev.png +0 -0
- package/static/devtools/Images/securityIcons.svg +1 -0
- package/static/devtools/Images/settings_14x14_icon.svg +1 -0
- package/static/devtools/Images/smallIcons.svg +1 -0
- package/static/devtools/Images/sources_panel_icon.svg +1 -0
- package/static/devtools/Images/speech.png +0 -0
- package/static/devtools/Images/toolbarResizerVertical.png +0 -0
- package/static/devtools/Images/touchCursor.png +0 -0
- package/static/devtools/Images/touchCursor_2x.png +0 -0
- package/static/devtools/Images/treeoutlineTriangles.svg +1 -0
- package/static/devtools/Images/warning_icon.svg +1 -0
- package/static/devtools/Images/whatsnew.avif +0 -0
- package/static/devtools/Tests.js +1654 -0
- package/static/devtools/accessibility/accessibility-legacy.js +1 -0
- package/static/devtools/accessibility/accessibility-meta.js +1 -0
- package/static/devtools/accessibility/accessibility.js +1 -0
- package/static/devtools/accessibility/accessibility_module.js +1 -0
- package/static/devtools/accessibility_test_runner/accessibility_test_runner.js +77 -0
- package/static/devtools/accessibility_test_runner/accessibility_test_runner_module.js +0 -0
- package/static/devtools/animation/animation-legacy.js +1 -0
- package/static/devtools/animation/animation-meta.js +1 -0
- package/static/devtools/animation/animation.js +1 -0
- package/static/devtools/animation/animation_module.js +1 -0
- package/static/devtools/application_test_runner/AppcacheTestRunner.js +220 -0
- package/static/devtools/application_test_runner/CacheStorageTestRunner.js +286 -0
- package/static/devtools/application_test_runner/IndexedDBTestRunner.js +476 -0
- package/static/devtools/application_test_runner/ResourceTreeTestRunner.js +99 -0
- package/static/devtools/application_test_runner/ResourcesTestRunner.js +167 -0
- package/static/devtools/application_test_runner/ServiceWorkersTestRunner.js +131 -0
- package/static/devtools/application_test_runner/application_test_runner.js +10 -0
- package/static/devtools/application_test_runner/application_test_runner_module.js +0 -0
- package/static/devtools/axe_core_test_runner/axe_core_test_runner.js +174 -0
- package/static/devtools/axe_core_test_runner/axe_core_test_runner_module.js +0 -0
- package/static/devtools/bindings/bindings-legacy.js +1 -0
- package/static/devtools/bindings/bindings.js +1 -0
- package/static/devtools/bindings_test_runner/AutomappingTestRunner.js +130 -0
- package/static/devtools/bindings_test_runner/BindingsTestRunner.js +238 -0
- package/static/devtools/bindings_test_runner/IsolatedFilesystemTestRunner.js +287 -0
- package/static/devtools/bindings_test_runner/OverridesTestRunner.js +26 -0
- package/static/devtools/bindings_test_runner/PersistenceTestRunner.js +109 -0
- package/static/devtools/bindings_test_runner/bindings_test_runner.js +9 -0
- package/static/devtools/bindings_test_runner/bindings_test_runner_module.js +0 -0
- package/static/devtools/browser_debugger/browser_debugger-legacy.js +1 -0
- package/static/devtools/browser_debugger/browser_debugger-meta.js +1 -0
- package/static/devtools/browser_debugger/browser_debugger.js +1 -0
- package/static/devtools/browser_debugger/browser_debugger_module.js +1 -0
- package/static/devtools/browser_sdk/browser_sdk-meta.js +1 -0
- package/static/devtools/browser_sdk/browser_sdk.js +1 -0
- package/static/devtools/changes/changes-legacy.js +1 -0
- package/static/devtools/changes/changes-meta.js +1 -0
- package/static/devtools/changes/changes.js +1 -0
- package/static/devtools/changes/changes_module.js +1 -0
- package/static/devtools/client_variations/client_variations.js +1 -0
- package/static/devtools/client_variations/client_variations_module.js +0 -0
- package/static/devtools/cm/cm.js +1 -0
- package/static/devtools/cm/cm_module.js +1 -0
- package/static/devtools/cm_headless/cm_headless.js +1 -0
- package/static/devtools/color_picker/color_picker-legacy.js +1 -0
- package/static/devtools/color_picker/color_picker.js +1 -0
- package/static/devtools/color_picker/color_picker_module.js +1 -0
- package/static/devtools/common/common-legacy.js +1 -0
- package/static/devtools/common/common.js +1 -0
- package/static/devtools/component_helpers/component_helpers.js +1 -0
- package/static/devtools/components/components-legacy.js +1 -0
- package/static/devtools/components/components.js +1 -0
- package/static/devtools/console/console-legacy.js +1 -0
- package/static/devtools/console/console-meta.js +1 -0
- package/static/devtools/console/console.js +6 -0
- package/static/devtools/console/console_module.js +1 -0
- package/static/devtools/console_counters/console_counters-legacy.js +1 -0
- package/static/devtools/console_counters/console_counters.js +1 -0
- package/static/devtools/console_test_runner/console_test_runner.js +696 -0
- package/static/devtools/console_test_runner/console_test_runner_module.js +0 -0
- package/static/devtools/cookie_table/cookie_table-legacy.js +1 -0
- package/static/devtools/cookie_table/cookie_table.js +1 -0
- package/static/devtools/cookie_table/cookie_table_module.js +1 -0
- package/static/devtools/coverage/coverage-legacy.js +1 -0
- package/static/devtools/coverage/coverage-meta.js +1 -0
- package/static/devtools/coverage/coverage.js +1 -0
- package/static/devtools/coverage/coverage_module.js +1 -0
- package/static/devtools/coverage_test_runner/coverage_test_runner.js +151 -0
- package/static/devtools/coverage_test_runner/coverage_test_runner_module.js +0 -0
- package/static/devtools/cpu_profiler_test_runner/cpu_profiler_test_runner.js +72 -0
- package/static/devtools/cpu_profiler_test_runner/cpu_profiler_test_runner_module.js +0 -0
- package/static/devtools/css_overview/css_overview-meta.js +1 -0
- package/static/devtools/css_overview/css_overview.js +146 -0
- package/static/devtools/css_overview/css_overview_module.js +1 -0
- package/static/devtools/data_grid/data_grid-legacy.js +1 -0
- package/static/devtools/data_grid/data_grid.js +1 -0
- package/static/devtools/data_grid/data_grid_module.js +1 -0
- package/static/devtools/data_grid_test_runner/data_grid_test_runner.js +78 -0
- package/static/devtools/data_grid_test_runner/data_grid_test_runner_module.js +0 -0
- package/static/devtools/developer_resources/developer_resources-legacy.js +1 -0
- package/static/devtools/developer_resources/developer_resources-meta.js +1 -0
- package/static/devtools/developer_resources/developer_resources.js +1 -0
- package/static/devtools/developer_resources/developer_resources_module.js +1 -0
- package/static/devtools/device_mode_test_runner/device_mode_test_runner.js +45 -0
- package/static/devtools/device_mode_test_runner/device_mode_test_runner_module.js +0 -0
- package/static/devtools/devtools_app.html +20 -0
- package/static/devtools/devtools_app.js +1 -0
- package/static/devtools/devtools_compatibility.js +1546 -0
- package/static/devtools/diff/diff-legacy.js +1 -0
- package/static/devtools/diff/diff.js +1 -0
- package/static/devtools/diff/diff_module.js +0 -0
- package/static/devtools/dom_extension/dom_extension.js +1 -0
- package/static/devtools/elements/elements-legacy.js +1 -0
- package/static/devtools/elements/elements-meta.js +1 -0
- package/static/devtools/elements/elements.js +469 -0
- package/static/devtools/elements/elements_module.js +1 -0
- package/static/devtools/elements_test_runner/EditDOMTestRunner.js +78 -0
- package/static/devtools/elements_test_runner/ElementsPanelShadowSelectionOnRefreshTestRunner.js +39 -0
- package/static/devtools/elements_test_runner/ElementsTestRunner.js +1280 -0
- package/static/devtools/elements_test_runner/SetOuterHTMLTestRunner.js +115 -0
- package/static/devtools/elements_test_runner/StylesUpdateLinksTestRunner.js +134 -0
- package/static/devtools/elements_test_runner/elements_test_runner.js +9 -0
- package/static/devtools/elements_test_runner/elements_test_runner_module.js +0 -0
- package/static/devtools/emulated_devices/emulated_devices_module.js +0 -0
- package/static/devtools/emulated_devices/optimized/MotoG4-landscape.avif +0 -0
- package/static/devtools/emulated_devices/optimized/MotoG4-portrait.avif +0 -0
- package/static/devtools/emulated_devices/optimized/Nexus5X-landscape.avif +0 -0
- package/static/devtools/emulated_devices/optimized/Nexus5X-portrait.avif +0 -0
- package/static/devtools/emulated_devices/optimized/Nexus6P-landscape.avif +0 -0
- package/static/devtools/emulated_devices/optimized/Nexus6P-portrait.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-default-1x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-default-2x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-1x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-2x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-navigation-1x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-navigation-2x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-default-1x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-default-2x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-keyboard-1x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-keyboard-2x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-navigation-1x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-navigation-2x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-default-1x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-default-2x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-1x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-2x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-1x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-2x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-default-1x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-default-2x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-1x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-2x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-navigation-1x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-navigation-2x.avif +0 -0
- package/static/devtools/emulated_devices/optimized/iPad-landscape.avif +0 -0
- package/static/devtools/emulated_devices/optimized/iPad-portrait.avif +0 -0
- package/static/devtools/emulated_devices/optimized/iPhone5-landscape.avif +0 -0
- package/static/devtools/emulated_devices/optimized/iPhone5-portrait.avif +0 -0
- package/static/devtools/emulated_devices/optimized/iPhone6-landscape.avif +0 -0
- package/static/devtools/emulated_devices/optimized/iPhone6-portrait.avif +0 -0
- package/static/devtools/emulated_devices/optimized/iPhone6Plus-landscape.avif +0 -0
- package/static/devtools/emulated_devices/optimized/iPhone6Plus-portrait.avif +0 -0
- package/static/devtools/emulation/emulation-legacy.js +1 -0
- package/static/devtools/emulation/emulation-meta.js +1 -0
- package/static/devtools/emulation/emulation.js +1 -0
- package/static/devtools/event_listeners/event_listeners-legacy.js +1 -0
- package/static/devtools/event_listeners/event_listeners.js +1 -0
- package/static/devtools/event_listeners/event_listeners_module.js +1 -0
- package/static/devtools/extensions/extensions-legacy.js +1 -0
- package/static/devtools/extensions/extensions.js +1 -0
- package/static/devtools/extensions_test_runner/ExtensionsNetworkTestRunner.js +27 -0
- package/static/devtools/extensions_test_runner/ExtensionsTestRunner.js +68 -0
- package/static/devtools/extensions_test_runner/extensions_test_runner.js +6 -0
- package/static/devtools/extensions_test_runner/extensions_test_runner_module.js +0 -0
- package/static/devtools/formatter/formatter-legacy.js +1 -0
- package/static/devtools/formatter/formatter.js +1 -0
- package/static/devtools/formatter/formatter_module.js +0 -0
- package/static/devtools/formatter_worker/FormatterActions.js +1 -0
- package/static/devtools/formatter_worker/formatter_worker-entrypoint.js +1 -0
- package/static/devtools/formatter_worker/formatter_worker.js +1 -0
- package/static/devtools/har_importer/har_importer-legacy.js +1 -0
- package/static/devtools/har_importer/har_importer.js +1 -0
- package/static/devtools/har_importer/har_importer_module.js +0 -0
- package/static/devtools/heap_profiler_test_runner/heap_profiler_test_runner.js +740 -0
- package/static/devtools/heap_profiler_test_runner/heap_profiler_test_runner_module.js +0 -0
- package/static/devtools/heap_snapshot_model/heap_snapshot_model-legacy.js +1 -0
- package/static/devtools/heap_snapshot_model/heap_snapshot_model.js +1 -0
- package/static/devtools/heap_snapshot_model/heap_snapshot_model_module.js +0 -0
- package/static/devtools/heap_snapshot_worker/heap_snapshot_worker-entrypoint.js +1 -0
- package/static/devtools/heap_snapshot_worker/heap_snapshot_worker-legacy.js +1 -0
- package/static/devtools/heap_snapshot_worker/heap_snapshot_worker.js +1 -0
- package/static/devtools/heap_snapshot_worker/heap_snapshot_worker_module.js +0 -0
- package/static/devtools/help/help-legacy.js +1 -0
- package/static/devtools/help/help-meta.js +1 -0
- package/static/devtools/help/help.js +1 -0
- package/static/devtools/help/help_module.js +1 -0
- package/static/devtools/host/host-legacy.js +1 -0
- package/static/devtools/host/host.js +1 -0
- package/static/devtools/i18n/i18n.js +1 -0
- package/static/devtools/i18n/i18n_locales-tsconfig.json +8 -0
- package/static/devtools/i18n/locales/en-US.json +3566 -0
- package/static/devtools/inline_editor/inline_editor-legacy.js +1 -0
- package/static/devtools/inline_editor/inline_editor.js +203 -0
- package/static/devtools/inline_editor/inline_editor_module.js +1 -0
- package/static/devtools/input/input-legacy.js +1 -0
- package/static/devtools/input/input-meta.js +1 -0
- package/static/devtools/input/input.js +1 -0
- package/static/devtools/input/input_module.js +1 -0
- package/static/devtools/inspector.html +20 -0
- package/static/devtools/inspector.js +1 -0
- package/static/devtools/inspector_main/inspector_main-legacy.js +1 -0
- package/static/devtools/inspector_main/inspector_main-meta.js +1 -0
- package/static/devtools/inspector_main/inspector_main.js +1 -0
- package/static/devtools/integration_test_runner.html +14 -0
- package/static/devtools/integration_test_runner.js +2 -0
- package/static/devtools/issues/issues-legacy.js +1 -0
- package/static/devtools/issues/issues-meta.js +1 -0
- package/static/devtools/issues/issues.js +67 -0
- package/static/devtools/issues/issues_module.js +1 -0
- package/static/devtools/javascript_metadata/javascript_metadata-legacy.js +1 -0
- package/static/devtools/javascript_metadata/javascript_metadata.js +1 -0
- package/static/devtools/javascript_metadata/javascript_metadata_module.js +0 -0
- package/static/devtools/js_app.html +20 -0
- package/static/devtools/js_app.js +1 -0
- package/static/devtools/js_main/js_main-legacy.js +1 -0
- package/static/devtools/js_main/js_main.js +1 -0
- package/static/devtools/js_profiler/js_profiler-meta.js +1 -0
- package/static/devtools/js_profiler/js_profiler.js +1 -0
- package/static/devtools/js_profiler/js_profiler_module.js +0 -0
- package/static/devtools/layer_viewer/layer_viewer-legacy.js +1 -0
- package/static/devtools/layer_viewer/layer_viewer.js +1 -0
- package/static/devtools/layer_viewer/layer_viewer_module.js +1 -0
- package/static/devtools/layers/layers-legacy.js +1 -0
- package/static/devtools/layers/layers-meta.js +1 -0
- package/static/devtools/layers/layers.js +1 -0
- package/static/devtools/layers/layers_module.js +0 -0
- package/static/devtools/layers_test_runner/layers_test_runner.js +156 -0
- package/static/devtools/layers_test_runner/layers_test_runner_module.js +0 -0
- package/static/devtools/lighthouse/lighthouse-legacy.js +1 -0
- package/static/devtools/lighthouse/lighthouse-meta.js +1 -0
- package/static/devtools/lighthouse/lighthouse.js +70 -0
- package/static/devtools/lighthouse/lighthouse_module.js +1 -0
- package/static/devtools/lighthouse_test_runner/lighthouse_test_runner.js +136 -0
- package/static/devtools/lighthouse_test_runner/lighthouse_test_runner_module.js +0 -0
- package/static/devtools/lighthouse_worker/LighthouseService.js +195 -0
- package/static/devtools/lighthouse_worker/lighthouse_worker.js +6 -0
- package/static/devtools/lighthouse_worker.js +1 -0
- package/static/devtools/linear_memory_inspector/linear_memory_inspector-legacy.js +1 -0
- package/static/devtools/linear_memory_inspector/linear_memory_inspector-meta.js +1 -0
- package/static/devtools/linear_memory_inspector/linear_memory_inspector.js +399 -0
- package/static/devtools/linear_memory_inspector/linear_memory_inspector_module.js +0 -0
- package/static/devtools/main/main-legacy.js +1 -0
- package/static/devtools/main/main.js +1 -0
- package/static/devtools/media/media-legacy.js +1 -0
- package/static/devtools/media/media-meta.js +1 -0
- package/static/devtools/media/media.js +1 -0
- package/static/devtools/media/media_module.js +1 -0
- package/static/devtools/mobile_throttling/mobile_throttling-legacy.js +1 -0
- package/static/devtools/mobile_throttling/mobile_throttling-meta.js +1 -0
- package/static/devtools/mobile_throttling/mobile_throttling.js +1 -0
- package/static/devtools/ndb_app.html +20 -0
- package/static/devtools/ndb_app.js +1 -0
- package/static/devtools/network/network-legacy.js +1 -0
- package/static/devtools/network/network-meta.js +1 -0
- package/static/devtools/network/network.js +72 -0
- package/static/devtools/network/network_module.js +1 -0
- package/static/devtools/network_test_runner/network_test_runner.js +280 -0
- package/static/devtools/network_test_runner/network_test_runner_module.js +0 -0
- package/static/devtools/node_app.html +20 -0
- package/static/devtools/node_app.js +1 -0
- package/static/devtools/node_debugger/node_debugger-meta.js +1 -0
- package/static/devtools/node_debugger/node_debugger.js +1 -0
- package/static/devtools/node_debugger/node_debugger_module.js +0 -0
- package/static/devtools/node_main/node_main-legacy.js +1 -0
- package/static/devtools/node_main/node_main-meta.js +1 -0
- package/static/devtools/node_main/node_main.js +1 -0
- package/static/devtools/object_ui/object_ui-legacy.js +1 -0
- package/static/devtools/object_ui/object_ui.js +3 -0
- package/static/devtools/object_ui/object_ui_module.js +1 -0
- package/static/devtools/perf_ui/perf_ui-legacy.js +1 -0
- package/static/devtools/perf_ui/perf_ui.js +152 -0
- package/static/devtools/perf_ui/perf_ui_module.js +1 -0
- package/static/devtools/performance_monitor/performance_monitor-legacy.js +1 -0
- package/static/devtools/performance_monitor/performance_monitor-meta.js +1 -0
- package/static/devtools/performance_monitor/performance_monitor.js +1 -0
- package/static/devtools/performance_monitor/performance_monitor_module.js +1 -0
- package/static/devtools/performance_test_runner/TimelineDataTestRunner.js +5375 -0
- package/static/devtools/performance_test_runner/TimelineTestRunner.js +446 -0
- package/static/devtools/performance_test_runner/performance_test_runner.js +6 -0
- package/static/devtools/performance_test_runner/performance_test_runner_module.js +0 -0
- package/static/devtools/persistence/persistence-legacy.js +1 -0
- package/static/devtools/persistence/persistence-meta.js +1 -0
- package/static/devtools/persistence/persistence.js +1 -0
- package/static/devtools/platform/platform.js +1 -0
- package/static/devtools/profiler/profiler-legacy.js +1 -0
- package/static/devtools/profiler/profiler-meta.js +1 -0
- package/static/devtools/profiler/profiler.js +8 -0
- package/static/devtools/profiler/profiler_module.js +1 -0
- package/static/devtools/protocol_client/protocol_client-legacy.js +1 -0
- package/static/devtools/protocol_client/protocol_client.js +1 -0
- package/static/devtools/protocol_monitor/protocol_monitor-legacy.js +1 -0
- package/static/devtools/protocol_monitor/protocol_monitor-meta.js +1 -0
- package/static/devtools/protocol_monitor/protocol_monitor.js +1 -0
- package/static/devtools/protocol_monitor/protocol_monitor_module.js +1 -0
- package/static/devtools/quick_open/quick_open-legacy.js +1 -0
- package/static/devtools/quick_open/quick_open.js +1 -0
- package/static/devtools/quick_open/quick_open_module.js +1 -0
- package/static/devtools/recorder/recorder.js +1 -0
- package/static/devtools/resources/resources-legacy.js +1 -0
- package/static/devtools/resources/resources-meta.js +1 -0
- package/static/devtools/resources/resources.js +28 -0
- package/static/devtools/resources/resources_module.js +1 -0
- package/static/devtools/root/root-legacy.js +1 -0
- package/static/devtools/root/root.js +1 -0
- package/static/devtools/screencast/screencast-legacy.js +1 -0
- package/static/devtools/screencast/screencast.js +1 -0
- package/static/devtools/sdk/sdk-legacy.js +1 -0
- package/static/devtools/sdk/sdk.js +2 -0
- package/static/devtools/sdk_test_runner/sdk_test_runner.js +297 -0
- package/static/devtools/sdk_test_runner/sdk_test_runner_module.js +0 -0
- package/static/devtools/search/search-legacy.js +1 -0
- package/static/devtools/search/search.js +1 -0
- package/static/devtools/search/search_module.js +1 -0
- package/static/devtools/security/security-legacy.js +1 -0
- package/static/devtools/security/security-meta.js +1 -0
- package/static/devtools/security/security.js +1 -0
- package/static/devtools/security/security_module.js +1 -0
- package/static/devtools/security_test_runner/security_test_runner.js +32 -0
- package/static/devtools/security_test_runner/security_test_runner_module.js +0 -0
- package/static/devtools/services/services-legacy.js +1 -0
- package/static/devtools/services/services.js +1 -0
- package/static/devtools/settings/settings-legacy.js +1 -0
- package/static/devtools/settings/settings-meta.js +1 -0
- package/static/devtools/settings/settings.js +1 -0
- package/static/devtools/settings/settings_module.js +1 -0
- package/static/devtools/shell.js +1 -0
- package/static/devtools/snippets/snippets-legacy.js +1 -0
- package/static/devtools/snippets/snippets.js +1 -0
- package/static/devtools/snippets/snippets_module.js +0 -0
- package/static/devtools/source_frame/source_frame-legacy.js +1 -0
- package/static/devtools/source_frame/source_frame.js +1 -0
- package/static/devtools/source_frame/source_frame_module.js +1 -0
- package/static/devtools/sources/sources-legacy.js +1 -0
- package/static/devtools/sources/sources-meta.js +1 -0
- package/static/devtools/sources/sources.js +13 -0
- package/static/devtools/sources/sources_module.js +1 -0
- package/static/devtools/sources_test_runner/AutocompleteTestRunner.js +46 -0
- package/static/devtools/sources_test_runner/DebuggerTestRunner.js +895 -0
- package/static/devtools/sources_test_runner/EditorTestRunner.js +237 -0
- package/static/devtools/sources_test_runner/LiveEditTestRunner.js +33 -0
- package/static/devtools/sources_test_runner/SearchTestRunner.js +158 -0
- package/static/devtools/sources_test_runner/SourcesTestRunner.js +173 -0
- package/static/devtools/sources_test_runner/sources_test_runner.js +10 -0
- package/static/devtools/sources_test_runner/sources_test_runner_module.js +0 -0
- package/static/devtools/startup/startup.js +1 -0
- package/static/devtools/test_runner/test_runner.js +1 -0
- package/static/devtools/text_editor/text_editor-legacy.js +1 -0
- package/static/devtools/text_editor/text_editor.js +1 -0
- package/static/devtools/text_editor/text_editor_module.js +1 -0
- package/static/devtools/text_utils/text_utils-legacy.js +1 -0
- package/static/devtools/text_utils/text_utils.js +1 -0
- package/static/devtools/theme_support/theme_support.js +1 -0
- package/static/devtools/third_party/acorn/acorn-tsconfig.json +8 -0
- package/static/devtools/third_party/acorn/acorn.js +1 -0
- package/static/devtools/third_party/acorn/package/dist/acorn.d.ts +209 -0
- package/static/devtools/third_party/acorn/package/dist/acorn.mjs +5261 -0
- package/static/devtools/third_party/acorn/package/dist/acorn.mjs.d.ts +2 -0
- package/static/devtools/third_party/acorn/package/dist/acorn.mjs.map +1 -0
- package/static/devtools/third_party/acorn-loose/acorn-loose-tsconfig.json +8 -0
- package/static/devtools/third_party/acorn-loose/package/dist/acorn-loose.d.ts +16 -0
- package/static/devtools/third_party/acorn-loose/package/dist/acorn-loose.mjs +1418 -0
- package/static/devtools/third_party/axe-core/axe.js +16423 -0
- package/static/devtools/third_party/chromium/chromium-tsconfig.json +8 -0
- package/static/devtools/third_party/chromium/client-variations/ClientVariations.d.ts +13 -0
- package/static/devtools/third_party/chromium/client-variations/ClientVariations.js +27 -0
- package/static/devtools/third_party/codemirror/codemirror-tsconfig.json +72 -0
- package/static/devtools/third_party/codemirror/package/addon/comment/comment.d.ts +4 -0
- package/static/devtools/third_party/codemirror/package/addon/comment/comment.js +211 -0
- package/static/devtools/third_party/codemirror/package/addon/edit/closebrackets.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/addon/edit/closebrackets.js +201 -0
- package/static/devtools/third_party/codemirror/package/addon/edit/matchbrackets.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/addon/edit/matchbrackets.js +158 -0
- package/static/devtools/third_party/codemirror/package/addon/fold/brace-fold.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/addon/fold/brace-fold.js +105 -0
- package/static/devtools/third_party/codemirror/package/addon/fold/foldcode.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/addon/fold/foldcode.js +157 -0
- package/static/devtools/third_party/codemirror/package/addon/fold/foldgutter.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/addon/fold/foldgutter.js +163 -0
- package/static/devtools/third_party/codemirror/package/addon/mode/multiplex.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/addon/mode/multiplex.js +131 -0
- package/static/devtools/third_party/codemirror/package/addon/mode/overlay.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/addon/mode/overlay.js +90 -0
- package/static/devtools/third_party/codemirror/package/addon/mode/simple.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/addon/mode/simple.js +216 -0
- package/static/devtools/third_party/codemirror/package/addon/runmode/runmode-standalone.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/addon/runmode/runmode-standalone.js +333 -0
- package/static/devtools/third_party/codemirror/package/addon/selection/active-line.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/addon/selection/active-line.js +72 -0
- package/static/devtools/third_party/codemirror/package/addon/selection/mark-selection.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/addon/selection/mark-selection.js +119 -0
- package/static/devtools/third_party/codemirror/package/lib/codemirror.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/lib/codemirror.js +9800 -0
- package/static/devtools/third_party/codemirror/package/mode/clike/clike.d.ts +4 -0
- package/static/devtools/third_party/codemirror/package/mode/clike/clike.js +935 -0
- package/static/devtools/third_party/codemirror/package/mode/clojure/clojure.d.ts +4 -0
- package/static/devtools/third_party/codemirror/package/mode/clojure/clojure.js +292 -0
- package/static/devtools/third_party/codemirror/package/mode/coffeescript/coffeescript.d.ts +4 -0
- package/static/devtools/third_party/codemirror/package/mode/coffeescript/coffeescript.js +359 -0
- package/static/devtools/third_party/codemirror/package/mode/css/css.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/mode/css/css.js +864 -0
- package/static/devtools/third_party/codemirror/package/mode/htmlembedded/htmlembedded.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/mode/htmlembedded/htmlembedded.js +37 -0
- package/static/devtools/third_party/codemirror/package/mode/htmlmixed/htmlmixed.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/mode/htmlmixed/htmlmixed.js +153 -0
- package/static/devtools/third_party/codemirror/package/mode/javascript/javascript.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/mode/javascript/javascript.js +942 -0
- package/static/devtools/third_party/codemirror/package/mode/jsx/jsx.d.ts +4 -0
- package/static/devtools/third_party/codemirror/package/mode/jsx/jsx.js +148 -0
- package/static/devtools/third_party/codemirror/package/mode/livescript/livescript.d.ts +4 -0
- package/static/devtools/third_party/codemirror/package/mode/livescript/livescript.js +280 -0
- package/static/devtools/third_party/codemirror/package/mode/markdown/markdown.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/mode/markdown/markdown.js +886 -0
- package/static/devtools/third_party/codemirror/package/mode/php/php.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/mode/php/php.js +234 -0
- package/static/devtools/third_party/codemirror/package/mode/python/python.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/mode/python/python.js +399 -0
- package/static/devtools/third_party/codemirror/package/mode/shell/shell.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/mode/shell/shell.js +168 -0
- package/static/devtools/third_party/codemirror/package/mode/wast/wast.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/mode/wast/wast.js +41 -0
- package/static/devtools/third_party/codemirror/package/mode/xml/xml.d.ts +1 -0
- package/static/devtools/third_party/codemirror/package/mode/xml/xml.js +413 -0
- package/static/devtools/third_party/i18n/bundle-tsconfig.json +8 -0
- package/static/devtools/third_party/i18n/i18n.d.ts +108 -0
- package/static/devtools/third_party/i18n/i18n.js +4336 -0
- package/static/devtools/third_party/lighthouse/lighthouse-dt-bundle.d.ts +1 -0
- package/static/devtools/third_party/lighthouse/lighthouse-dt-bundle.js +1140 -0
- package/static/devtools/third_party/lighthouse/lighthouse-tsconfig.json +10 -0
- package/static/devtools/third_party/lighthouse/locales/ar-XB.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/ar.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/bg.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/ca.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/cs.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/da.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/de.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/el.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/en-GB.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/en-US.json +2297 -0
- package/static/devtools/third_party/lighthouse/locales/en-XA.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/en-XL.json +2297 -0
- package/static/devtools/third_party/lighthouse/locales/es-419.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/es.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/fi.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/fil.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/fr.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/he.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/hi.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/hr.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/hu.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/id.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/it.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/ja.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/ko.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/lt.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/lv.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/nl.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/no.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/pl.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/pt-PT.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/pt.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/ro.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/ru.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/sk.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/sl.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/sr-Latn.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/sr.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/sv.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/ta.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/te.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/th.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/tr.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/uk.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/vi.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/zh-HK.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/zh-TW.json +2066 -0
- package/static/devtools/third_party/lighthouse/locales/zh.json +2066 -0
- package/static/devtools/third_party/lighthouse/report-assets/report-generator.d.ts +1 -0
- package/static/devtools/third_party/lighthouse/report-assets/report-generator.js +167 -0
- package/static/devtools/third_party/lighthouse/report-assets/report.d.ts +1 -0
- package/static/devtools/third_party/lighthouse/report-assets/report.js +5032 -0
- package/static/devtools/third_party/lit-html/lit-html-tsconfig.json +22 -0
- package/static/devtools/third_party/lit-html/lit-html.js +120 -0
- package/static/devtools/third_party/lit-html/package/directives/class-map.d.ts +28 -0
- package/static/devtools/third_party/lit-html/package/directives/class-map.js +101 -0
- package/static/devtools/third_party/lit-html/package/directives/class-map.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/directives/if-defined.d.ts +22 -0
- package/static/devtools/third_party/lit-html/package/directives/if-defined.js +37 -0
- package/static/devtools/third_party/lit-html/package/directives/if-defined.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/directives/live.d.ts +38 -0
- package/static/devtools/third_party/lit-html/package/directives/live.js +73 -0
- package/static/devtools/third_party/lit-html/package/directives/live.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/directives/repeat.d.ts +37 -0
- package/static/devtools/third_party/lit-html/package/directives/repeat.js +415 -0
- package/static/devtools/third_party/lit-html/package/directives/repeat.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/directives/style-map.d.ts +36 -0
- package/static/devtools/third_party/lit-html/package/directives/style-map.js +78 -0
- package/static/devtools/third_party/lit-html/package/directives/style-map.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/lib/default-template-processor.d.ts +39 -0
- package/static/devtools/third_party/lit-html/package/lib/default-template-processor.js +52 -0
- package/static/devtools/third_party/lit-html/package/lib/default-template-processor.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/lib/directive.d.ts +59 -0
- package/static/devtools/third_party/lit-html/package/lib/directive.js +63 -0
- package/static/devtools/third_party/lit-html/package/lib/directive.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/lib/dom.d.ts +29 -0
- package/static/devtools/third_party/lit-html/package/lib/dom.js +44 -0
- package/static/devtools/third_party/lit-html/package/lib/dom.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/lib/part.d.ts +46 -0
- package/static/devtools/third_party/lit-html/package/lib/part.js +23 -0
- package/static/devtools/third_party/lit-html/package/lib/part.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/lib/parts.d.ts +148 -0
- package/static/devtools/third_party/lit-html/package/lib/parts.js +476 -0
- package/static/devtools/third_party/lit-html/package/lib/parts.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/lib/render.d.ts +33 -0
- package/static/devtools/third_party/lit-html/package/lib/render.js +43 -0
- package/static/devtools/third_party/lit-html/package/lib/render.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/lib/template-factory.d.ts +57 -0
- package/static/devtools/third_party/lit-html/package/lib/template-factory.js +48 -0
- package/static/devtools/third_party/lit-html/package/lib/template-factory.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/lib/template-instance.d.ts +30 -0
- package/static/devtools/third_party/lit-html/package/lib/template-instance.js +134 -0
- package/static/devtools/third_party/lit-html/package/lib/template-instance.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/lib/template-result.d.ts +42 -0
- package/static/devtools/third_party/lit-html/package/lib/template-result.js +131 -0
- package/static/devtools/third_party/lit-html/package/lib/template-result.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/lib/template.d.ts +92 -0
- package/static/devtools/third_party/lit-html/package/lib/template.js +215 -0
- package/static/devtools/third_party/lit-html/package/lib/template.js.map +1 -0
- package/static/devtools/third_party/lit-html/package/lit-html.d.ts +42 -0
- package/static/devtools/third_party/lit-html/package/lit-html.js +59 -0
- package/static/devtools/third_party/lit-html/package/lit-html.js.map +1 -0
- package/static/devtools/third_party/marked/marked-tsconfig.json +8 -0
- package/static/devtools/third_party/marked/marked.js +1 -0
- package/static/devtools/third_party/marked/package/lib/marked.esm.d.ts +1 -0
- package/static/devtools/third_party/marked/package/lib/marked.esm.js +2584 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.d.ts +53 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.js +64 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.d.ts +176 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.js +356 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.d.ts +21 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.js +81 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.d.ts +423 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.js +516 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.d.ts +39 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.js +76 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.d.ts +26 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.js +30 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.d.ts +120 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.js +266 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectionTransport.d.ts +22 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectionTransport.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectionTransport.js +15 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.d.ts +72 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.js +60 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.d.ts +181 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.js +316 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts +174 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.js +647 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts +53 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js +77 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.d.ts +33 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.js +873 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.d.ts +76 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.js +92 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.d.ts +25 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.js +33 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.d.ts +34 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.js +37 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.d.ts +59 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.js +15 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EventEmitter.d.ts +89 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EventEmitter.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EventEmitter.js +109 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.d.ts +82 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.js +83 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.d.ts +189 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.js +313 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.d.ts +60 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.js +66 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts +735 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js +962 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts +276 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js +421 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts +128 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js +150 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.d.ts +322 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.js +463 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts +439 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.js +724 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.d.ts +62 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.js +145 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts +80 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.js +262 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts +152 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js +31 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.d.ts +910 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.js +1343 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Product.d.ts +21 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Product.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Product.js +15 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.d.ts +135 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.js +133 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PuppeteerViewport.d.ts +24 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PuppeteerViewport.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PuppeteerViewport.js +0 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts +66 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js +157 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.d.ts +61 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.js +72 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.d.ts +98 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.js +137 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.d.ts +28 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.js +43 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.d.ts +47 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.js +94 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.d.ts +40 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.js +403 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.d.ts +102 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.js +109 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.d.ts +22 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.js +24 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.d.ts +17 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.js +20 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.d.ts +66 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.js +288 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts +17 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/environment.js +16 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.d.ts +18 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.js +39 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.d.ts +18 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.js +22 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.d.ts +132 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js +468 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts +40 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.js +197 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts +42 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.js +0 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts +16 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js +469 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts +29 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.js +34 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts +31 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.js +61 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.d.ts +156 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.js +183 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/install.d.ts +18 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/install.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js +151 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.d.ts +18 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.js +23 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node.d.ts +18 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node.js +22 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +22 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +19 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/web.d.ts +18 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/web.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/web.js +22 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.d.ts +22 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.d.ts.map +1 -0
- package/static/devtools/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.js +53 -0
- package/static/devtools/third_party/puppeteer/puppeteer-tsconfig.json +58 -0
- package/static/devtools/third_party/puppeteer/puppeteer.js +1 -0
- package/static/devtools/third_party/wasmparser/package/dist/esm/WasmDis.js +1595 -0
- package/static/devtools/third_party/wasmparser/package/dist/esm/WasmParser.js +3120 -0
- package/static/devtools/third_party/wasmparser/wasmparser-tsconfig.json +9 -0
- package/static/devtools/timeline/timeline-legacy.js +1 -0
- package/static/devtools/timeline/timeline-meta.js +1 -0
- package/static/devtools/timeline/timeline.js +1 -0
- package/static/devtools/timeline/timeline_module.js +1 -0
- package/static/devtools/timeline_model/timeline_model-legacy.js +1 -0
- package/static/devtools/timeline_model/timeline_model.js +1 -0
- package/static/devtools/timeline_model/timeline_model_module.js +0 -0
- package/static/devtools/toolbox.html +20 -0
- package/static/devtools/toolbox.js +1 -0
- package/static/devtools/toolbox_bootstrap/toolbox_bootstrap.js +1 -0
- package/static/devtools/ui/components/components.js +378 -0
- package/static/devtools/ui/ui-legacy.js +1 -0
- package/static/devtools/ui/ui.js +3 -0
- package/static/devtools/ui/utils/utils.js +1 -0
- package/static/devtools/wasmparser_worker/wasmparser_worker-entrypoint.js +1 -0
- package/static/devtools/wasmparser_worker/wasmparser_worker.js +1 -0
- package/static/devtools/web_audio/graph_visualizer/graph_visualizer.js +1 -0
- package/static/devtools/web_audio/web_audio-legacy.js +1 -0
- package/static/devtools/web_audio/web_audio-meta.js +1 -0
- package/static/devtools/web_audio/web_audio.js +23 -0
- package/static/devtools/web_audio/web_audio_module.js +1 -0
- package/static/devtools/webauthn/webauthn-legacy.js +1 -0
- package/static/devtools/webauthn/webauthn-meta.js +1 -0
- package/static/devtools/webauthn/webauthn.js +6 -0
- package/static/devtools/webauthn/webauthn_module.js +1 -0
- package/static/devtools/worker_app.html +20 -0
- package/static/devtools/worker_app.js +1 -0
- package/static/devtools/worker_main/worker_main-legacy.js +1 -0
- package/static/devtools/worker_main/worker_main.js +1 -0
- package/static/devtools/worker_service/worker_service.js +1 -0
- package/static/devtools/workspace/workspace-legacy.js +1 -0
- package/static/devtools/workspace/workspace.js +1 -0
- package/static/devtools/workspace_diff/workspace_diff-legacy.js +1 -0
- package/static/devtools/workspace_diff/workspace_diff.js +1 -0
- package/static/devtools/workspace_diff/workspace_diff_module.js +0 -0
- package/static/docs/swagger.json +2337 -279
- package/static/function/client.js +1037 -992
- package/build/routes/chromium/http/json-new.js +0 -23
- package/build/routes/chromium/http/json-version-get.response.json +0 -37
- package/build/routes/chromium/utils/cdp.d.ts +0 -2
- package/build/routes/chromium/utils/cdp.js +0 -14
- package/build/routes/chromium/ws/cdp-chromium.js +0 -10
- package/src/routes/chromium/http/json-list.ts +0 -50
- package/src/routes/chromium/utils/cdp.ts +0 -19
- package/build/routes/{chromium/http/content-post.query.json → chrome/http/content.post.query.json} +0 -0
- package/build/routes/{chromium/http/content-post.response.json → chrome/http/content.post.response.json} +0 -0
- package/build/routes/{chromium/http/download-post.body.json → chrome/http/download.post.body.json} +0 -0
- package/build/routes/{chromium/http/download-post.query.json → chrome/http/download.post.query.json} +0 -0
- package/build/routes/{chromium/http/download-post.response.json → chrome/http/download.post.response.json} +0 -0
- package/build/routes/{chromium/http/function-post.body.json → chrome/http/function.post.body.json} +0 -0
- package/build/routes/{chromium/http/function-post.query.json → chrome/http/function.post.query.json} +0 -0
- package/build/routes/{chromium/http/function-post.response.json → chrome/http/function.post.response.json} +0 -0
- package/build/routes/{chromium/http/json-list.response.json → chrome/http/json-list.get.response.json} +0 -0
- package/build/routes/{chromium/http/json-new.response.json → chrome/http/json-new.put.response.json} +0 -0
- package/build/routes/{chromium/http/json-protocol-get.response.json → chrome/http/json-protocol.get.response.json} +0 -0
- package/build/routes/{chromium/http/pdf-post.query.json → chrome/http/pdf.post.query.json} +0 -0
- package/build/routes/{chromium/http/pdf-post.response.json → chrome/http/pdf.post.response.json} +0 -0
- package/build/routes/{chromium/http/performance.body.json → chrome/http/performance.post.body.json} +0 -0
- package/build/routes/{chromium/http/performance.query.json → chrome/http/performance.post.query.json} +0 -0
- package/build/routes/{chromium/http/performance.response.json → chrome/http/performance.post.response.json} +0 -0
- package/build/routes/{chromium/http/scrape-post.query.json → chrome/http/scrape.post.query.json} +0 -0
- package/build/routes/{chromium/http/scrape-post.response.json → chrome/http/scrape.post.response.json} +0 -0
- package/build/routes/{chromium/http/screenshot-post.query.json → chrome/http/screenshot.post.query.json} +0 -0
- package/build/routes/{chromium/http/screenshot-post.response.json → chrome/http/screenshot.post.response.json} +0 -0
- package/build/routes/{chromium/utils/performance/child.d.ts → chrome/tests/content.spec.d.ts} +0 -0
- package/build/routes/{chromium/utils/performance/types.js → chrome/tests/download.spec.d.ts} +0 -0
- package/build/routes/{chromium/ws/cdp-chromium.query.json → chrome/ws/browser.query.json} +0 -0
- package/build/routes/{chromium/ws/playwright-chromium.query.json → chrome/ws/playwright.query.json} +0 -0
- package/build/routes/{firefox/ws/playwright-firefox.query.json → chromium/ws/playwright.query.json} +0 -0
- package/build/routes/{webkit/ws/playwright-webkit.query.json → firefox/ws/playwright.query.json} +0 -0
- package/build/routes/management/http/{config-get.d.ts → config.get.d.ts} +0 -0
- package/build/routes/management/http/{config-get.js → config.get.js} +0 -0
- package/build/routes/management/http/{config-get.response.json → config.get.response.json} +0 -0
- package/build/routes/management/http/{metrics-total-get.d.ts → metrics-total.get.d.ts} +0 -0
- package/build/routes/management/http/{metrics-total-get.js → metrics-total.get.js} +0 -0
- package/build/routes/management/http/{metrics-total-get.response.json → metrics-total.get.response.json} +0 -0
- package/build/routes/management/http/{metrics-get.d.ts → metrics.get.d.ts} +0 -0
- package/build/routes/management/http/{metrics-get.js → metrics.get.js} +0 -0
- package/build/routes/management/http/{metrics-get.response.json → metrics.get.response.json} +0 -0
- package/build/routes/management/http/{sessions-get.d.ts → sessions.get.d.ts} +0 -0
- package/build/routes/management/http/{sessions-get.js → sessions.get.js} +0 -0
- package/build/routes/management/http/{static-get.d.ts → static.get.d.ts} +0 -0
- package/build/{routes/chromium/http/json-protocol-get.d.ts → shared/json-protocol.http.d.ts} +1 -1
- package/build/{routes/chromium/http/json-version-get.d.ts → shared/json-version.http.d.ts} +1 -1
- /package/build/{routes/chromium → shared}/utils/function/client.d.ts +0 -0
- /package/build/{routes/chromium → shared}/utils/function/client.js +0 -0
- /package/build/{routes/chromium → shared}/utils/function/handler.d.ts +0 -0
- /package/build/{routes/chromium → shared}/utils/function/handler.js +0 -0
- /package/build/{routes/chromium → shared}/utils/performance/child.js +0 -0
- /package/build/{routes/chromium → shared}/utils/performance/main.d.ts +0 -0
- /package/build/{routes/chromium → shared}/utils/performance/types.d.ts +0 -0
- /package/src/routes/management/http/{config-get.ts → config.get.ts} +0 -0
- /package/src/routes/management/http/{metrics-total-get.ts → metrics-total.get.ts} +0 -0
- /package/src/routes/management/http/{metrics-get.ts → metrics.get.ts} +0 -0
- /package/src/routes/management/http/{sessions-get.ts → sessions.get.ts} +0 -0
- /package/src/{routes/chromium → shared}/utils/function/client.ts +0 -0
- /package/src/{routes/chromium → shared}/utils/performance/child.ts +0 -0
- /package/src/{routes/chromium → shared}/utils/performance/types.ts +0 -0
|
@@ -0,0 +1,2066 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lighthouse-core/audits/accessibility/accesskeys.js | description": {
|
|
3
|
+
"message": "Access keys let users quickly focus a part of the page. For proper navigation, each access key must be unique. [Learn more](https://web.dev/accesskeys/)."
|
|
4
|
+
},
|
|
5
|
+
"lighthouse-core/audits/accessibility/accesskeys.js | failureTitle": {
|
|
6
|
+
"message": "`[accesskey]` values are not unique"
|
|
7
|
+
},
|
|
8
|
+
"lighthouse-core/audits/accessibility/accesskeys.js | title": {
|
|
9
|
+
"message": "`[accesskey]` values are unique"
|
|
10
|
+
},
|
|
11
|
+
"lighthouse-core/audits/accessibility/aria-allowed-attr.js | description": {
|
|
12
|
+
"message": "Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. [Learn more](https://web.dev/aria-allowed-attr/)."
|
|
13
|
+
},
|
|
14
|
+
"lighthouse-core/audits/accessibility/aria-allowed-attr.js | failureTitle": {
|
|
15
|
+
"message": "`[aria-*]` attributes do not match their roles"
|
|
16
|
+
},
|
|
17
|
+
"lighthouse-core/audits/accessibility/aria-allowed-attr.js | title": {
|
|
18
|
+
"message": "`[aria-*]` attributes match their roles"
|
|
19
|
+
},
|
|
20
|
+
"lighthouse-core/audits/accessibility/aria-hidden-body.js | description": {
|
|
21
|
+
"message": "Assistive technologies, like screen readers, work inconsistently when `aria-hidden=\"true\"` is set on the document `<body>`. [Learn more](https://web.dev/aria-hidden-body/)."
|
|
22
|
+
},
|
|
23
|
+
"lighthouse-core/audits/accessibility/aria-hidden-body.js | failureTitle": {
|
|
24
|
+
"message": "`[aria-hidden=\"true\"]` is present on the document `<body>`"
|
|
25
|
+
},
|
|
26
|
+
"lighthouse-core/audits/accessibility/aria-hidden-body.js | title": {
|
|
27
|
+
"message": "`[aria-hidden=\"true\"]` is not present on the document `<body>`"
|
|
28
|
+
},
|
|
29
|
+
"lighthouse-core/audits/accessibility/aria-hidden-focus.js | description": {
|
|
30
|
+
"message": "Focusable descendents within an `[aria-hidden=\"true\"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. [Learn more](https://web.dev/aria-hidden-focus/)."
|
|
31
|
+
},
|
|
32
|
+
"lighthouse-core/audits/accessibility/aria-hidden-focus.js | failureTitle": {
|
|
33
|
+
"message": "`[aria-hidden=\"true\"]` elements contain focusable descendents"
|
|
34
|
+
},
|
|
35
|
+
"lighthouse-core/audits/accessibility/aria-hidden-focus.js | title": {
|
|
36
|
+
"message": "`[aria-hidden=\"true\"]` elements do not contain focusable descendents"
|
|
37
|
+
},
|
|
38
|
+
"lighthouse-core/audits/accessibility/aria-input-field-name.js | description": {
|
|
39
|
+
"message": "When an input field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://web.dev/aria-input-field-name/)."
|
|
40
|
+
},
|
|
41
|
+
"lighthouse-core/audits/accessibility/aria-input-field-name.js | failureTitle": {
|
|
42
|
+
"message": "ARIA input fields do not have accessible names"
|
|
43
|
+
},
|
|
44
|
+
"lighthouse-core/audits/accessibility/aria-input-field-name.js | title": {
|
|
45
|
+
"message": "ARIA input fields have accessible names"
|
|
46
|
+
},
|
|
47
|
+
"lighthouse-core/audits/accessibility/aria-required-attr.js | description": {
|
|
48
|
+
"message": "Some ARIA roles have required attributes that describe the state of the element to screen readers. [Learn more](https://web.dev/aria-required-attr/)."
|
|
49
|
+
},
|
|
50
|
+
"lighthouse-core/audits/accessibility/aria-required-attr.js | failureTitle": {
|
|
51
|
+
"message": "`[role]`s do not have all required `[aria-*]` attributes"
|
|
52
|
+
},
|
|
53
|
+
"lighthouse-core/audits/accessibility/aria-required-attr.js | title": {
|
|
54
|
+
"message": "`[role]`s have all required `[aria-*]` attributes"
|
|
55
|
+
},
|
|
56
|
+
"lighthouse-core/audits/accessibility/aria-required-children.js | description": {
|
|
57
|
+
"message": "Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. [Learn more](https://web.dev/aria-required-children/)."
|
|
58
|
+
},
|
|
59
|
+
"lighthouse-core/audits/accessibility/aria-required-children.js | failureTitle": {
|
|
60
|
+
"message": "Elements with an ARIA `[role]` that require children to contain a specific `[role]` are missing some or all of those required children."
|
|
61
|
+
},
|
|
62
|
+
"lighthouse-core/audits/accessibility/aria-required-children.js | title": {
|
|
63
|
+
"message": "Elements with an ARIA `[role]` that require children to contain a specific `[role]` have all required children."
|
|
64
|
+
},
|
|
65
|
+
"lighthouse-core/audits/accessibility/aria-required-parent.js | description": {
|
|
66
|
+
"message": "Some ARIA child roles must be contained by specific parent roles to properly perform their intended accessibility functions. [Learn more](https://web.dev/aria-required-parent/)."
|
|
67
|
+
},
|
|
68
|
+
"lighthouse-core/audits/accessibility/aria-required-parent.js | failureTitle": {
|
|
69
|
+
"message": "`[role]`s are not contained by their required parent element"
|
|
70
|
+
},
|
|
71
|
+
"lighthouse-core/audits/accessibility/aria-required-parent.js | title": {
|
|
72
|
+
"message": "`[role]`s are contained by their required parent element"
|
|
73
|
+
},
|
|
74
|
+
"lighthouse-core/audits/accessibility/aria-roles.js | description": {
|
|
75
|
+
"message": "ARIA roles must have valid values in order to perform their intended accessibility functions. [Learn more](https://web.dev/aria-roles/)."
|
|
76
|
+
},
|
|
77
|
+
"lighthouse-core/audits/accessibility/aria-roles.js | failureTitle": {
|
|
78
|
+
"message": "`[role]` values are not valid"
|
|
79
|
+
},
|
|
80
|
+
"lighthouse-core/audits/accessibility/aria-roles.js | title": {
|
|
81
|
+
"message": "`[role]` values are valid"
|
|
82
|
+
},
|
|
83
|
+
"lighthouse-core/audits/accessibility/aria-toggle-field-name.js | description": {
|
|
84
|
+
"message": "When a toggle field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://web.dev/aria-toggle-field-name/)."
|
|
85
|
+
},
|
|
86
|
+
"lighthouse-core/audits/accessibility/aria-toggle-field-name.js | failureTitle": {
|
|
87
|
+
"message": "ARIA toggle fields do not have accessible names"
|
|
88
|
+
},
|
|
89
|
+
"lighthouse-core/audits/accessibility/aria-toggle-field-name.js | title": {
|
|
90
|
+
"message": "ARIA toggle fields have accessible names"
|
|
91
|
+
},
|
|
92
|
+
"lighthouse-core/audits/accessibility/aria-valid-attr-value.js | description": {
|
|
93
|
+
"message": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. [Learn more](https://web.dev/aria-valid-attr-value/)."
|
|
94
|
+
},
|
|
95
|
+
"lighthouse-core/audits/accessibility/aria-valid-attr-value.js | failureTitle": {
|
|
96
|
+
"message": "`[aria-*]` attributes do not have valid values"
|
|
97
|
+
},
|
|
98
|
+
"lighthouse-core/audits/accessibility/aria-valid-attr-value.js | title": {
|
|
99
|
+
"message": "`[aria-*]` attributes have valid values"
|
|
100
|
+
},
|
|
101
|
+
"lighthouse-core/audits/accessibility/aria-valid-attr.js | description": {
|
|
102
|
+
"message": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid names. [Learn more](https://web.dev/aria-valid-attr/)."
|
|
103
|
+
},
|
|
104
|
+
"lighthouse-core/audits/accessibility/aria-valid-attr.js | failureTitle": {
|
|
105
|
+
"message": "`[aria-*]` attributes are not valid or misspelled"
|
|
106
|
+
},
|
|
107
|
+
"lighthouse-core/audits/accessibility/aria-valid-attr.js | title": {
|
|
108
|
+
"message": "`[aria-*]` attributes are valid and not misspelled"
|
|
109
|
+
},
|
|
110
|
+
"lighthouse-core/audits/accessibility/axe-audit.js | failingElementsHeader": {
|
|
111
|
+
"message": "Failing Elements"
|
|
112
|
+
},
|
|
113
|
+
"lighthouse-core/audits/accessibility/button-name.js | description": {
|
|
114
|
+
"message": "When a button doesn't have an accessible name, screen readers announce it as \"button\", making it unusable for users who rely on screen readers. [Learn more](https://web.dev/button-name/)."
|
|
115
|
+
},
|
|
116
|
+
"lighthouse-core/audits/accessibility/button-name.js | failureTitle": {
|
|
117
|
+
"message": "Buttons do not have an accessible name"
|
|
118
|
+
},
|
|
119
|
+
"lighthouse-core/audits/accessibility/button-name.js | title": {
|
|
120
|
+
"message": "Buttons have an accessible name"
|
|
121
|
+
},
|
|
122
|
+
"lighthouse-core/audits/accessibility/bypass.js | description": {
|
|
123
|
+
"message": "Adding ways to bypass repetitive content lets keyboard users navigate the page more efficiently. [Learn more](https://web.dev/bypass/)."
|
|
124
|
+
},
|
|
125
|
+
"lighthouse-core/audits/accessibility/bypass.js | failureTitle": {
|
|
126
|
+
"message": "The page does not contain a heading, skip link, or landmark region"
|
|
127
|
+
},
|
|
128
|
+
"lighthouse-core/audits/accessibility/bypass.js | title": {
|
|
129
|
+
"message": "The page contains a heading, skip link, or landmark region"
|
|
130
|
+
},
|
|
131
|
+
"lighthouse-core/audits/accessibility/color-contrast.js | description": {
|
|
132
|
+
"message": "Low-contrast text is difficult or impossible for many users to read. [Learn more](https://web.dev/color-contrast/)."
|
|
133
|
+
},
|
|
134
|
+
"lighthouse-core/audits/accessibility/color-contrast.js | failureTitle": {
|
|
135
|
+
"message": "Background and foreground colors do not have a sufficient contrast ratio."
|
|
136
|
+
},
|
|
137
|
+
"lighthouse-core/audits/accessibility/color-contrast.js | title": {
|
|
138
|
+
"message": "Background and foreground colors have a sufficient contrast ratio"
|
|
139
|
+
},
|
|
140
|
+
"lighthouse-core/audits/accessibility/definition-list.js | description": {
|
|
141
|
+
"message": "When definition lists are not properly marked up, screen readers may produce confusing or inaccurate output. [Learn more](https://web.dev/definition-list/)."
|
|
142
|
+
},
|
|
143
|
+
"lighthouse-core/audits/accessibility/definition-list.js | failureTitle": {
|
|
144
|
+
"message": "`<dl>`'s do not contain only properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements."
|
|
145
|
+
},
|
|
146
|
+
"lighthouse-core/audits/accessibility/definition-list.js | title": {
|
|
147
|
+
"message": "`<dl>`'s contain only properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements."
|
|
148
|
+
},
|
|
149
|
+
"lighthouse-core/audits/accessibility/dlitem.js | description": {
|
|
150
|
+
"message": "Definition list items (`<dt>` and `<dd>`) must be wrapped in a parent `<dl>` element to ensure that screen readers can properly announce them. [Learn more](https://web.dev/dlitem/)."
|
|
151
|
+
},
|
|
152
|
+
"lighthouse-core/audits/accessibility/dlitem.js | failureTitle": {
|
|
153
|
+
"message": "Definition list items are not wrapped in `<dl>` elements"
|
|
154
|
+
},
|
|
155
|
+
"lighthouse-core/audits/accessibility/dlitem.js | title": {
|
|
156
|
+
"message": "Definition list items are wrapped in `<dl>` elements"
|
|
157
|
+
},
|
|
158
|
+
"lighthouse-core/audits/accessibility/document-title.js | description": {
|
|
159
|
+
"message": "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://web.dev/document-title/)."
|
|
160
|
+
},
|
|
161
|
+
"lighthouse-core/audits/accessibility/document-title.js | failureTitle": {
|
|
162
|
+
"message": "Document doesn't have a `<title>` element"
|
|
163
|
+
},
|
|
164
|
+
"lighthouse-core/audits/accessibility/document-title.js | title": {
|
|
165
|
+
"message": "Document has a `<title>` element"
|
|
166
|
+
},
|
|
167
|
+
"lighthouse-core/audits/accessibility/duplicate-id-active.js | description": {
|
|
168
|
+
"message": "All focusable elements must have a unique `id` to ensure that they're visible to assistive technologies. [Learn more](https://web.dev/duplicate-id-active/)."
|
|
169
|
+
},
|
|
170
|
+
"lighthouse-core/audits/accessibility/duplicate-id-active.js | failureTitle": {
|
|
171
|
+
"message": "`[id]` attributes on active, focusable elements are not unique"
|
|
172
|
+
},
|
|
173
|
+
"lighthouse-core/audits/accessibility/duplicate-id-active.js | title": {
|
|
174
|
+
"message": "`[id]` attributes on active, focusable elements are unique"
|
|
175
|
+
},
|
|
176
|
+
"lighthouse-core/audits/accessibility/duplicate-id-aria.js | description": {
|
|
177
|
+
"message": "The value of an ARIA ID must be unique to prevent other instances from being overlooked by assistive technologies. [Learn more](https://web.dev/duplicate-id-aria/)."
|
|
178
|
+
},
|
|
179
|
+
"lighthouse-core/audits/accessibility/duplicate-id-aria.js | failureTitle": {
|
|
180
|
+
"message": "ARIA IDs are not unique"
|
|
181
|
+
},
|
|
182
|
+
"lighthouse-core/audits/accessibility/duplicate-id-aria.js | title": {
|
|
183
|
+
"message": "ARIA IDs are unique"
|
|
184
|
+
},
|
|
185
|
+
"lighthouse-core/audits/accessibility/form-field-multiple-labels.js | description": {
|
|
186
|
+
"message": "Form fields with multiple labels can be confusingly announced by assistive technologies like screen readers which use either the first, the last, or all of the labels. [Learn more](https://web.dev/form-field-multiple-labels/)."
|
|
187
|
+
},
|
|
188
|
+
"lighthouse-core/audits/accessibility/form-field-multiple-labels.js | failureTitle": {
|
|
189
|
+
"message": "Form fields have multiple labels"
|
|
190
|
+
},
|
|
191
|
+
"lighthouse-core/audits/accessibility/form-field-multiple-labels.js | title": {
|
|
192
|
+
"message": "No form fields have multiple labels"
|
|
193
|
+
},
|
|
194
|
+
"lighthouse-core/audits/accessibility/frame-title.js | description": {
|
|
195
|
+
"message": "Screen reader users rely on frame titles to describe the contents of frames. [Learn more](https://web.dev/frame-title/)."
|
|
196
|
+
},
|
|
197
|
+
"lighthouse-core/audits/accessibility/frame-title.js | failureTitle": {
|
|
198
|
+
"message": "`<frame>` or `<iframe>` elements do not have a title"
|
|
199
|
+
},
|
|
200
|
+
"lighthouse-core/audits/accessibility/frame-title.js | title": {
|
|
201
|
+
"message": "`<frame>` or `<iframe>` elements have a title"
|
|
202
|
+
},
|
|
203
|
+
"lighthouse-core/audits/accessibility/heading-order.js | description": {
|
|
204
|
+
"message": "Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. [Learn more](https://web.dev/heading-order/)."
|
|
205
|
+
},
|
|
206
|
+
"lighthouse-core/audits/accessibility/heading-order.js | failureTitle": {
|
|
207
|
+
"message": "Heading elements are not in a sequentially-descending order"
|
|
208
|
+
},
|
|
209
|
+
"lighthouse-core/audits/accessibility/heading-order.js | title": {
|
|
210
|
+
"message": "Heading elements appear in a sequentially-descending order"
|
|
211
|
+
},
|
|
212
|
+
"lighthouse-core/audits/accessibility/html-has-lang.js | description": {
|
|
213
|
+
"message": "If a page doesn't specify a lang attribute, a screen reader assumes that the page is in the default language that the user chose when setting up the screen reader. If the page isn't actually in the default language, then the screen reader might not announce the page's text correctly. [Learn more](https://web.dev/html-has-lang/)."
|
|
214
|
+
},
|
|
215
|
+
"lighthouse-core/audits/accessibility/html-has-lang.js | failureTitle": {
|
|
216
|
+
"message": "`<html>` element does not have a `[lang]` attribute"
|
|
217
|
+
},
|
|
218
|
+
"lighthouse-core/audits/accessibility/html-has-lang.js | title": {
|
|
219
|
+
"message": "`<html>` element has a `[lang]` attribute"
|
|
220
|
+
},
|
|
221
|
+
"lighthouse-core/audits/accessibility/html-lang-valid.js | description": {
|
|
222
|
+
"message": "Specifying a valid [BCP 47 language](https://www.w3.org/International/questions/qa-choosing-language-tags#question) helps screen readers announce text properly. [Learn more](https://web.dev/html-lang-valid/)."
|
|
223
|
+
},
|
|
224
|
+
"lighthouse-core/audits/accessibility/html-lang-valid.js | failureTitle": {
|
|
225
|
+
"message": "`<html>` element does not have a valid value for its `[lang]` attribute."
|
|
226
|
+
},
|
|
227
|
+
"lighthouse-core/audits/accessibility/html-lang-valid.js | title": {
|
|
228
|
+
"message": "`<html>` element has a valid value for its `[lang]` attribute"
|
|
229
|
+
},
|
|
230
|
+
"lighthouse-core/audits/accessibility/image-alt.js | description": {
|
|
231
|
+
"message": "Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. [Learn more](https://web.dev/image-alt/)."
|
|
232
|
+
},
|
|
233
|
+
"lighthouse-core/audits/accessibility/image-alt.js | failureTitle": {
|
|
234
|
+
"message": "Image elements do not have `[alt]` attributes"
|
|
235
|
+
},
|
|
236
|
+
"lighthouse-core/audits/accessibility/image-alt.js | title": {
|
|
237
|
+
"message": "Image elements have `[alt]` attributes"
|
|
238
|
+
},
|
|
239
|
+
"lighthouse-core/audits/accessibility/input-image-alt.js | description": {
|
|
240
|
+
"message": "When an image is being used as an `<input>` button, providing alternative text can help screen reader users understand the purpose of the button. [Learn more](https://web.dev/input-image-alt/)."
|
|
241
|
+
},
|
|
242
|
+
"lighthouse-core/audits/accessibility/input-image-alt.js | failureTitle": {
|
|
243
|
+
"message": "`<input type=\"image\">` elements do not have `[alt]` text"
|
|
244
|
+
},
|
|
245
|
+
"lighthouse-core/audits/accessibility/input-image-alt.js | title": {
|
|
246
|
+
"message": "`<input type=\"image\">` elements have `[alt]` text"
|
|
247
|
+
},
|
|
248
|
+
"lighthouse-core/audits/accessibility/label.js | description": {
|
|
249
|
+
"message": "Labels ensure that form controls are announced properly by assistive technologies, like screen readers. [Learn more](https://web.dev/label/)."
|
|
250
|
+
},
|
|
251
|
+
"lighthouse-core/audits/accessibility/label.js | failureTitle": {
|
|
252
|
+
"message": "Form elements do not have associated labels"
|
|
253
|
+
},
|
|
254
|
+
"lighthouse-core/audits/accessibility/label.js | title": {
|
|
255
|
+
"message": "Form elements have associated labels"
|
|
256
|
+
},
|
|
257
|
+
"lighthouse-core/audits/accessibility/link-name.js | description": {
|
|
258
|
+
"message": "Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. [Learn more](https://web.dev/link-name/)."
|
|
259
|
+
},
|
|
260
|
+
"lighthouse-core/audits/accessibility/link-name.js | failureTitle": {
|
|
261
|
+
"message": "Links do not have a discernible name"
|
|
262
|
+
},
|
|
263
|
+
"lighthouse-core/audits/accessibility/link-name.js | title": {
|
|
264
|
+
"message": "Links have a discernible name"
|
|
265
|
+
},
|
|
266
|
+
"lighthouse-core/audits/accessibility/list.js | description": {
|
|
267
|
+
"message": "Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. [Learn more](https://web.dev/list/)."
|
|
268
|
+
},
|
|
269
|
+
"lighthouse-core/audits/accessibility/list.js | failureTitle": {
|
|
270
|
+
"message": "Lists do not contain only `<li>` elements and script supporting elements (`<script>` and `<template>`)."
|
|
271
|
+
},
|
|
272
|
+
"lighthouse-core/audits/accessibility/list.js | title": {
|
|
273
|
+
"message": "Lists contain only `<li>` elements and script supporting elements (`<script>` and `<template>`)."
|
|
274
|
+
},
|
|
275
|
+
"lighthouse-core/audits/accessibility/listitem.js | description": {
|
|
276
|
+
"message": "Screen readers require list items (`<li>`) to be contained within a parent `<ul>` or `<ol>` to be announced properly. [Learn more](https://web.dev/listitem/)."
|
|
277
|
+
},
|
|
278
|
+
"lighthouse-core/audits/accessibility/listitem.js | failureTitle": {
|
|
279
|
+
"message": "List items (`<li>`) are not contained within `<ul>` or `<ol>` parent elements."
|
|
280
|
+
},
|
|
281
|
+
"lighthouse-core/audits/accessibility/listitem.js | title": {
|
|
282
|
+
"message": "List items (`<li>`) are contained within `<ul>` or `<ol>` parent elements"
|
|
283
|
+
},
|
|
284
|
+
"lighthouse-core/audits/accessibility/meta-refresh.js | description": {
|
|
285
|
+
"message": "Users do not expect a page to refresh automatically, and doing so will move focus back to the top of the page. This may create a frustrating or confusing experience. [Learn more](https://web.dev/meta-refresh/)."
|
|
286
|
+
},
|
|
287
|
+
"lighthouse-core/audits/accessibility/meta-refresh.js | failureTitle": {
|
|
288
|
+
"message": "The document uses `<meta http-equiv=\"refresh\">`"
|
|
289
|
+
},
|
|
290
|
+
"lighthouse-core/audits/accessibility/meta-refresh.js | title": {
|
|
291
|
+
"message": "The document does not use `<meta http-equiv=\"refresh\">`"
|
|
292
|
+
},
|
|
293
|
+
"lighthouse-core/audits/accessibility/meta-viewport.js | description": {
|
|
294
|
+
"message": "Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. [Learn more](https://web.dev/meta-viewport/)."
|
|
295
|
+
},
|
|
296
|
+
"lighthouse-core/audits/accessibility/meta-viewport.js | failureTitle": {
|
|
297
|
+
"message": "`[user-scalable=\"no\"]` is used in the `<meta name=\"viewport\">` element or the `[maximum-scale]` attribute is less than 5."
|
|
298
|
+
},
|
|
299
|
+
"lighthouse-core/audits/accessibility/meta-viewport.js | title": {
|
|
300
|
+
"message": "`[user-scalable=\"no\"]` is not used in the `<meta name=\"viewport\">` element and the `[maximum-scale]` attribute is not less than 5."
|
|
301
|
+
},
|
|
302
|
+
"lighthouse-core/audits/accessibility/object-alt.js | description": {
|
|
303
|
+
"message": "Screen readers cannot translate non-text content. Adding alt text to `<object>` elements helps screen readers convey meaning to users. [Learn more](https://web.dev/object-alt/)."
|
|
304
|
+
},
|
|
305
|
+
"lighthouse-core/audits/accessibility/object-alt.js | failureTitle": {
|
|
306
|
+
"message": "`<object>` elements do not have `[alt]` text"
|
|
307
|
+
},
|
|
308
|
+
"lighthouse-core/audits/accessibility/object-alt.js | title": {
|
|
309
|
+
"message": "`<object>` elements have `[alt]` text"
|
|
310
|
+
},
|
|
311
|
+
"lighthouse-core/audits/accessibility/tabindex.js | description": {
|
|
312
|
+
"message": "A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. [Learn more](https://web.dev/tabindex/)."
|
|
313
|
+
},
|
|
314
|
+
"lighthouse-core/audits/accessibility/tabindex.js | failureTitle": {
|
|
315
|
+
"message": "Some elements have a `[tabindex]` value greater than 0"
|
|
316
|
+
},
|
|
317
|
+
"lighthouse-core/audits/accessibility/tabindex.js | title": {
|
|
318
|
+
"message": "No element has a `[tabindex]` value greater than 0"
|
|
319
|
+
},
|
|
320
|
+
"lighthouse-core/audits/accessibility/td-headers-attr.js | description": {
|
|
321
|
+
"message": "Screen readers have features to make navigating tables easier. Ensuring `<td>` cells using the `[headers]` attribute only refer to other cells in the same table may improve the experience for screen reader users. [Learn more](https://web.dev/td-headers-attr/)."
|
|
322
|
+
},
|
|
323
|
+
"lighthouse-core/audits/accessibility/td-headers-attr.js | failureTitle": {
|
|
324
|
+
"message": "Cells in a `<table>` element that use the `[headers]` attribute refer to an element `id` not found within the same table."
|
|
325
|
+
},
|
|
326
|
+
"lighthouse-core/audits/accessibility/td-headers-attr.js | title": {
|
|
327
|
+
"message": "Cells in a `<table>` element that use the `[headers]` attribute refer to table cells within the same table."
|
|
328
|
+
},
|
|
329
|
+
"lighthouse-core/audits/accessibility/th-has-data-cells.js | description": {
|
|
330
|
+
"message": "Screen readers have features to make navigating tables easier. Ensuring table headers always refer to some set of cells may improve the experience for screen reader users. [Learn more](https://web.dev/th-has-data-cells/)."
|
|
331
|
+
},
|
|
332
|
+
"lighthouse-core/audits/accessibility/th-has-data-cells.js | failureTitle": {
|
|
333
|
+
"message": "`<th>` elements and elements with `[role=\"columnheader\"/\"rowheader\"]` do not have data cells they describe."
|
|
334
|
+
},
|
|
335
|
+
"lighthouse-core/audits/accessibility/th-has-data-cells.js | title": {
|
|
336
|
+
"message": "`<th>` elements and elements with `[role=\"columnheader\"/\"rowheader\"]` have data cells they describe."
|
|
337
|
+
},
|
|
338
|
+
"lighthouse-core/audits/accessibility/valid-lang.js | description": {
|
|
339
|
+
"message": "Specifying a valid [BCP 47 language](https://www.w3.org/International/questions/qa-choosing-language-tags#question) on elements helps ensure that text is pronounced correctly by a screen reader. [Learn more](https://web.dev/valid-lang/)."
|
|
340
|
+
},
|
|
341
|
+
"lighthouse-core/audits/accessibility/valid-lang.js | failureTitle": {
|
|
342
|
+
"message": "`[lang]` attributes do not have a valid value"
|
|
343
|
+
},
|
|
344
|
+
"lighthouse-core/audits/accessibility/valid-lang.js | title": {
|
|
345
|
+
"message": "`[lang]` attributes have a valid value"
|
|
346
|
+
},
|
|
347
|
+
"lighthouse-core/audits/accessibility/video-caption.js | description": {
|
|
348
|
+
"message": "When a video provides a caption it is easier for deaf and hearing impaired users to access its information. [Learn more](https://web.dev/video-caption/)."
|
|
349
|
+
},
|
|
350
|
+
"lighthouse-core/audits/accessibility/video-caption.js | failureTitle": {
|
|
351
|
+
"message": "`<video>` elements do not contain a `<track>` element with `[kind=\"captions\"]`."
|
|
352
|
+
},
|
|
353
|
+
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
354
|
+
"message": "`<video>` elements contain a `<track>` element with `[kind=\"captions\"]`"
|
|
355
|
+
},
|
|
356
|
+
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
357
|
+
"message": "For ideal appearance on iOS when users add a progressive web app to the home screen, define an `apple-touch-icon`. It must point to a non-transparent 192px (or 180px) square PNG. [Learn More](https://web.dev/apple-touch-icon/)."
|
|
358
|
+
},
|
|
359
|
+
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
360
|
+
"message": "Does not provide a valid `apple-touch-icon`"
|
|
361
|
+
},
|
|
362
|
+
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
363
|
+
"message": "`apple-touch-icon-precomposed` is out of date; `apple-touch-icon` is preferred."
|
|
364
|
+
},
|
|
365
|
+
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
366
|
+
"message": "Provides a valid `apple-touch-icon`"
|
|
367
|
+
},
|
|
368
|
+
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
369
|
+
"message": "Current Value"
|
|
370
|
+
},
|
|
371
|
+
"lighthouse-core/audits/autocomplete.js | columnSuggestions": {
|
|
372
|
+
"message": "Suggested Token"
|
|
373
|
+
},
|
|
374
|
+
"lighthouse-core/audits/autocomplete.js | description": {
|
|
375
|
+
"message": "`autocomplete` helps users submit forms quicker. To reduce user effort, consider enabling by setting the `autocomplete` attribute to a valid value. [Learn more](https://developers.google.com/web/fundamentals/design-and-ux/input/forms#use_metadata_to_enable_auto-complete)"
|
|
376
|
+
},
|
|
377
|
+
"lighthouse-core/audits/autocomplete.js | failureTitle": {
|
|
378
|
+
"message": "`<input>` elements do not have correct `autocomplete` attributes"
|
|
379
|
+
},
|
|
380
|
+
"lighthouse-core/audits/autocomplete.js | manualReview": {
|
|
381
|
+
"message": "Requires manual review"
|
|
382
|
+
},
|
|
383
|
+
"lighthouse-core/audits/autocomplete.js | reviewOrder": {
|
|
384
|
+
"message": "Review order of tokens"
|
|
385
|
+
},
|
|
386
|
+
"lighthouse-core/audits/autocomplete.js | title": {
|
|
387
|
+
"message": "`<input>` elements correctly use `autocomplete`"
|
|
388
|
+
},
|
|
389
|
+
"lighthouse-core/audits/autocomplete.js | warningInvalid": {
|
|
390
|
+
"message": "`autocomplete` token(s): \"{token}\" is invalid in {snippet}"
|
|
391
|
+
},
|
|
392
|
+
"lighthouse-core/audits/autocomplete.js | warningOrder": {
|
|
393
|
+
"message": "Review order of tokens: \"{tokens}\" in {snippet}"
|
|
394
|
+
},
|
|
395
|
+
"lighthouse-core/audits/bootup-time.js | chromeExtensionsWarning": {
|
|
396
|
+
"message": "Chrome extensions negatively affected this page's load performance. Try auditing the page in incognito mode or from a Chrome profile without extensions."
|
|
397
|
+
},
|
|
398
|
+
"lighthouse-core/audits/bootup-time.js | columnScriptEval": {
|
|
399
|
+
"message": "Script Evaluation"
|
|
400
|
+
},
|
|
401
|
+
"lighthouse-core/audits/bootup-time.js | columnScriptParse": {
|
|
402
|
+
"message": "Script Parse"
|
|
403
|
+
},
|
|
404
|
+
"lighthouse-core/audits/bootup-time.js | columnTotal": {
|
|
405
|
+
"message": "Total CPU Time"
|
|
406
|
+
},
|
|
407
|
+
"lighthouse-core/audits/bootup-time.js | description": {
|
|
408
|
+
"message": "Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. [Learn more](https://web.dev/bootup-time/)."
|
|
409
|
+
},
|
|
410
|
+
"lighthouse-core/audits/bootup-time.js | failureTitle": {
|
|
411
|
+
"message": "Reduce JavaScript execution time"
|
|
412
|
+
},
|
|
413
|
+
"lighthouse-core/audits/bootup-time.js | title": {
|
|
414
|
+
"message": "JavaScript execution time"
|
|
415
|
+
},
|
|
416
|
+
"lighthouse-core/audits/byte-efficiency/duplicated-javascript.js | description": {
|
|
417
|
+
"message": "Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity. "
|
|
418
|
+
},
|
|
419
|
+
"lighthouse-core/audits/byte-efficiency/duplicated-javascript.js | title": {
|
|
420
|
+
"message": "Remove duplicate modules in JavaScript bundles"
|
|
421
|
+
},
|
|
422
|
+
"lighthouse-core/audits/byte-efficiency/efficient-animated-content.js | description": {
|
|
423
|
+
"message": "Large GIFs are inefficient for delivering animated content. Consider using MPEG4/WebM videos for animations and PNG/WebP for static images instead of GIF to save network bytes. [Learn more](https://web.dev/efficient-animated-content/)"
|
|
424
|
+
},
|
|
425
|
+
"lighthouse-core/audits/byte-efficiency/efficient-animated-content.js | title": {
|
|
426
|
+
"message": "Use video formats for animated content"
|
|
427
|
+
},
|
|
428
|
+
"lighthouse-core/audits/byte-efficiency/legacy-javascript.js | description": {
|
|
429
|
+
"message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers. For your bundled JavaScript, adopt a modern script deployment strategy using module/nomodule feature detection to reduce the amount of code shipped to modern browsers, while retaining support for legacy browsers. [Learn More](https://philipwalton.com/articles/deploying-es2015-code-in-production-today/)"
|
|
430
|
+
},
|
|
431
|
+
"lighthouse-core/audits/byte-efficiency/legacy-javascript.js | title": {
|
|
432
|
+
"message": "Avoid serving legacy JavaScript to modern browsers"
|
|
433
|
+
},
|
|
434
|
+
"lighthouse-core/audits/byte-efficiency/offscreen-images.js | description": {
|
|
435
|
+
"message": "Consider lazy-loading offscreen and hidden images after all critical resources have finished loading to lower time to interactive. [Learn more](https://web.dev/offscreen-images/)."
|
|
436
|
+
},
|
|
437
|
+
"lighthouse-core/audits/byte-efficiency/offscreen-images.js | title": {
|
|
438
|
+
"message": "Defer offscreen images"
|
|
439
|
+
},
|
|
440
|
+
"lighthouse-core/audits/byte-efficiency/render-blocking-resources.js | description": {
|
|
441
|
+
"message": "Resources are blocking the first paint of your page. Consider delivering critical JS/CSS inline and deferring all non-critical JS/styles. [Learn more](https://web.dev/render-blocking-resources/)."
|
|
442
|
+
},
|
|
443
|
+
"lighthouse-core/audits/byte-efficiency/render-blocking-resources.js | title": {
|
|
444
|
+
"message": "Eliminate render-blocking resources"
|
|
445
|
+
},
|
|
446
|
+
"lighthouse-core/audits/byte-efficiency/total-byte-weight.js | description": {
|
|
447
|
+
"message": "Large network payloads cost users real money and are highly correlated with long load times. [Learn more](https://web.dev/total-byte-weight/)."
|
|
448
|
+
},
|
|
449
|
+
"lighthouse-core/audits/byte-efficiency/total-byte-weight.js | displayValue": {
|
|
450
|
+
"message": "Total size was {totalBytes, number, bytes} KiB"
|
|
451
|
+
},
|
|
452
|
+
"lighthouse-core/audits/byte-efficiency/total-byte-weight.js | failureTitle": {
|
|
453
|
+
"message": "Avoid enormous network payloads"
|
|
454
|
+
},
|
|
455
|
+
"lighthouse-core/audits/byte-efficiency/total-byte-weight.js | title": {
|
|
456
|
+
"message": "Avoids enormous network payloads"
|
|
457
|
+
},
|
|
458
|
+
"lighthouse-core/audits/byte-efficiency/unminified-css.js | description": {
|
|
459
|
+
"message": "Minifying CSS files can reduce network payload sizes. [Learn more](https://web.dev/unminified-css/)."
|
|
460
|
+
},
|
|
461
|
+
"lighthouse-core/audits/byte-efficiency/unminified-css.js | title": {
|
|
462
|
+
"message": "Minify CSS"
|
|
463
|
+
},
|
|
464
|
+
"lighthouse-core/audits/byte-efficiency/unminified-javascript.js | description": {
|
|
465
|
+
"message": "Minifying JavaScript files can reduce payload sizes and script parse time. [Learn more](https://web.dev/unminified-javascript/)."
|
|
466
|
+
},
|
|
467
|
+
"lighthouse-core/audits/byte-efficiency/unminified-javascript.js | title": {
|
|
468
|
+
"message": "Minify JavaScript"
|
|
469
|
+
},
|
|
470
|
+
"lighthouse-core/audits/byte-efficiency/unused-css-rules.js | description": {
|
|
471
|
+
"message": "Remove dead rules from stylesheets and defer the loading of CSS not used for above-the-fold content to reduce unnecessary bytes consumed by network activity. [Learn more](https://web.dev/unused-css-rules/)."
|
|
472
|
+
},
|
|
473
|
+
"lighthouse-core/audits/byte-efficiency/unused-css-rules.js | title": {
|
|
474
|
+
"message": "Remove unused CSS"
|
|
475
|
+
},
|
|
476
|
+
"lighthouse-core/audits/byte-efficiency/unused-javascript.js | description": {
|
|
477
|
+
"message": "Remove unused JavaScript to reduce bytes consumed by network activity. [Learn more](https://web.dev/unused-javascript/)."
|
|
478
|
+
},
|
|
479
|
+
"lighthouse-core/audits/byte-efficiency/unused-javascript.js | title": {
|
|
480
|
+
"message": "Remove unused JavaScript"
|
|
481
|
+
},
|
|
482
|
+
"lighthouse-core/audits/byte-efficiency/uses-long-cache-ttl.js | description": {
|
|
483
|
+
"message": "A long cache lifetime can speed up repeat visits to your page. [Learn more](https://web.dev/uses-long-cache-ttl/)."
|
|
484
|
+
},
|
|
485
|
+
"lighthouse-core/audits/byte-efficiency/uses-long-cache-ttl.js | displayValue": {
|
|
486
|
+
"message": "{itemCount,plural, =1{1 resource found}zero{# resources found}two{# resources found}few{# resources found}many{# resources found}other{# resources found}}"
|
|
487
|
+
},
|
|
488
|
+
"lighthouse-core/audits/byte-efficiency/uses-long-cache-ttl.js | failureTitle": {
|
|
489
|
+
"message": "Serve static assets with an efficient cache policy"
|
|
490
|
+
},
|
|
491
|
+
"lighthouse-core/audits/byte-efficiency/uses-long-cache-ttl.js | title": {
|
|
492
|
+
"message": "Uses efficient cache policy on static assets"
|
|
493
|
+
},
|
|
494
|
+
"lighthouse-core/audits/byte-efficiency/uses-optimized-images.js | description": {
|
|
495
|
+
"message": "Optimized images load faster and consume less cellular data. [Learn more](https://web.dev/uses-optimized-images/)."
|
|
496
|
+
},
|
|
497
|
+
"lighthouse-core/audits/byte-efficiency/uses-optimized-images.js | title": {
|
|
498
|
+
"message": "Efficiently encode images"
|
|
499
|
+
},
|
|
500
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
|
|
501
|
+
"message": "Serve images that are appropriately-sized to save cellular data and improve load time. [Learn more](https://web.dev/uses-responsive-images/)."
|
|
502
|
+
},
|
|
503
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | title": {
|
|
504
|
+
"message": "Properly size images"
|
|
505
|
+
},
|
|
506
|
+
"lighthouse-core/audits/byte-efficiency/uses-text-compression.js | description": {
|
|
507
|
+
"message": "Text-based resources should be served with compression (gzip, deflate or brotli) to minimize total network bytes. [Learn more](https://web.dev/uses-text-compression/)."
|
|
508
|
+
},
|
|
509
|
+
"lighthouse-core/audits/byte-efficiency/uses-text-compression.js | title": {
|
|
510
|
+
"message": "Enable text compression"
|
|
511
|
+
},
|
|
512
|
+
"lighthouse-core/audits/byte-efficiency/uses-webp-images.js | description": {
|
|
513
|
+
"message": "Image formats like JPEG 2000, JPEG XR, and WebP often provide better compression than PNG or JPEG, which means faster downloads and less data consumption. [Learn more](https://web.dev/uses-webp-images/)."
|
|
514
|
+
},
|
|
515
|
+
"lighthouse-core/audits/byte-efficiency/uses-webp-images.js | title": {
|
|
516
|
+
"message": "Serve images in next-gen formats"
|
|
517
|
+
},
|
|
518
|
+
"lighthouse-core/audits/content-width.js | description": {
|
|
519
|
+
"message": "If the width of your app's content doesn't match the width of the viewport, your app might not be optimized for mobile screens. [Learn more](https://web.dev/content-width/)."
|
|
520
|
+
},
|
|
521
|
+
"lighthouse-core/audits/content-width.js | explanation": {
|
|
522
|
+
"message": "The viewport size of {innerWidth}px does not match the window size of {outerWidth}px."
|
|
523
|
+
},
|
|
524
|
+
"lighthouse-core/audits/content-width.js | failureTitle": {
|
|
525
|
+
"message": "Content is not sized correctly for the viewport"
|
|
526
|
+
},
|
|
527
|
+
"lighthouse-core/audits/content-width.js | title": {
|
|
528
|
+
"message": "Content is sized correctly for the viewport"
|
|
529
|
+
},
|
|
530
|
+
"lighthouse-core/audits/critical-request-chains.js | description": {
|
|
531
|
+
"message": "The Critical Request Chains below show you what resources are loaded with a high priority. Consider reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load. [Learn more](https://web.dev/critical-request-chains/)."
|
|
532
|
+
},
|
|
533
|
+
"lighthouse-core/audits/critical-request-chains.js | displayValue": {
|
|
534
|
+
"message": "{itemCount,plural, =1{1 chain found}zero{# chains found}two{# chains found}few{# chains found}many{# chains found}other{# chains found}}"
|
|
535
|
+
},
|
|
536
|
+
"lighthouse-core/audits/critical-request-chains.js | title": {
|
|
537
|
+
"message": "Avoid chaining critical requests"
|
|
538
|
+
},
|
|
539
|
+
"lighthouse-core/audits/deprecations.js | columnDeprecate": {
|
|
540
|
+
"message": "Deprecation / Warning"
|
|
541
|
+
},
|
|
542
|
+
"lighthouse-core/audits/deprecations.js | columnLine": {
|
|
543
|
+
"message": "Line"
|
|
544
|
+
},
|
|
545
|
+
"lighthouse-core/audits/deprecations.js | description": {
|
|
546
|
+
"message": "Deprecated APIs will eventually be removed from the browser. [Learn more](https://web.dev/deprecations/)."
|
|
547
|
+
},
|
|
548
|
+
"lighthouse-core/audits/deprecations.js | displayValue": {
|
|
549
|
+
"message": "{itemCount,plural, =1{1 warning found}zero{# warnings found}two{# warnings found}few{# warnings found}many{# warnings found}other{# warnings found}}"
|
|
550
|
+
},
|
|
551
|
+
"lighthouse-core/audits/deprecations.js | failureTitle": {
|
|
552
|
+
"message": "Uses deprecated APIs"
|
|
553
|
+
},
|
|
554
|
+
"lighthouse-core/audits/deprecations.js | title": {
|
|
555
|
+
"message": "Avoids deprecated APIs"
|
|
556
|
+
},
|
|
557
|
+
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
558
|
+
"message": "Application Cache is deprecated. [Learn more](https://web.dev/appcache-manifest/)."
|
|
559
|
+
},
|
|
560
|
+
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
561
|
+
"message": "Found \"{AppCacheManifest}\""
|
|
562
|
+
},
|
|
563
|
+
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
564
|
+
"message": "Uses Application Cache"
|
|
565
|
+
},
|
|
566
|
+
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
567
|
+
"message": "Avoids Application Cache"
|
|
568
|
+
},
|
|
569
|
+
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
570
|
+
"message": "A character encoding declaration is required. It can be done with a `<meta>` tag in the first 1024 bytes of the HTML or in the Content-Type HTTP response header. [Learn more](https://web.dev/charset/)."
|
|
571
|
+
},
|
|
572
|
+
"lighthouse-core/audits/dobetterweb/charset.js | failureTitle": {
|
|
573
|
+
"message": "Charset declaration is missing or occurs too late in the HTML"
|
|
574
|
+
},
|
|
575
|
+
"lighthouse-core/audits/dobetterweb/charset.js | title": {
|
|
576
|
+
"message": "Properly defines charset"
|
|
577
|
+
},
|
|
578
|
+
"lighthouse-core/audits/dobetterweb/doctype.js | description": {
|
|
579
|
+
"message": "Specifying a doctype prevents the browser from switching to quirks-mode. [Learn more](https://web.dev/doctype/)."
|
|
580
|
+
},
|
|
581
|
+
"lighthouse-core/audits/dobetterweb/doctype.js | explanationBadDoctype": {
|
|
582
|
+
"message": "Doctype name must be the lowercase string `html`"
|
|
583
|
+
},
|
|
584
|
+
"lighthouse-core/audits/dobetterweb/doctype.js | explanationNoDoctype": {
|
|
585
|
+
"message": "Document must contain a doctype"
|
|
586
|
+
},
|
|
587
|
+
"lighthouse-core/audits/dobetterweb/doctype.js | explanationPublicId": {
|
|
588
|
+
"message": "Expected publicId to be an empty string"
|
|
589
|
+
},
|
|
590
|
+
"lighthouse-core/audits/dobetterweb/doctype.js | explanationSystemId": {
|
|
591
|
+
"message": "Expected systemId to be an empty string"
|
|
592
|
+
},
|
|
593
|
+
"lighthouse-core/audits/dobetterweb/doctype.js | failureTitle": {
|
|
594
|
+
"message": "Page lacks the HTML doctype, thus triggering quirks-mode"
|
|
595
|
+
},
|
|
596
|
+
"lighthouse-core/audits/dobetterweb/doctype.js | title": {
|
|
597
|
+
"message": "Page has the HTML doctype"
|
|
598
|
+
},
|
|
599
|
+
"lighthouse-core/audits/dobetterweb/dom-size.js | columnStatistic": {
|
|
600
|
+
"message": "Statistic"
|
|
601
|
+
},
|
|
602
|
+
"lighthouse-core/audits/dobetterweb/dom-size.js | columnValue": {
|
|
603
|
+
"message": "Value"
|
|
604
|
+
},
|
|
605
|
+
"lighthouse-core/audits/dobetterweb/dom-size.js | description": {
|
|
606
|
+
"message": "A large DOM will increase memory usage, cause longer [style calculations](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), and produce costly [layout reflows](https://developers.google.com/speed/articles/reflow). [Learn more](https://web.dev/dom-size/)."
|
|
607
|
+
},
|
|
608
|
+
"lighthouse-core/audits/dobetterweb/dom-size.js | displayValue": {
|
|
609
|
+
"message": "{itemCount,plural, =1{1 element}zero{# elements}two{# elements}few{# elements}many{# elements}other{# elements}}"
|
|
610
|
+
},
|
|
611
|
+
"lighthouse-core/audits/dobetterweb/dom-size.js | failureTitle": {
|
|
612
|
+
"message": "Avoid an excessive DOM size"
|
|
613
|
+
},
|
|
614
|
+
"lighthouse-core/audits/dobetterweb/dom-size.js | statisticDOMDepth": {
|
|
615
|
+
"message": "Maximum DOM Depth"
|
|
616
|
+
},
|
|
617
|
+
"lighthouse-core/audits/dobetterweb/dom-size.js | statisticDOMElements": {
|
|
618
|
+
"message": "Total DOM Elements"
|
|
619
|
+
},
|
|
620
|
+
"lighthouse-core/audits/dobetterweb/dom-size.js | statisticDOMWidth": {
|
|
621
|
+
"message": "Maximum Child Elements"
|
|
622
|
+
},
|
|
623
|
+
"lighthouse-core/audits/dobetterweb/dom-size.js | title": {
|
|
624
|
+
"message": "Avoids an excessive DOM size"
|
|
625
|
+
},
|
|
626
|
+
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | columnFailingAnchors": {
|
|
627
|
+
"message": "Failing Anchors"
|
|
628
|
+
},
|
|
629
|
+
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | description": {
|
|
630
|
+
"message": "Add `rel=\"noopener\"` or `rel=\"noreferrer\"` to any external links to improve performance and prevent security vulnerabilities. [Learn more](https://web.dev/external-anchors-use-rel-noopener/)."
|
|
631
|
+
},
|
|
632
|
+
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | failureTitle": {
|
|
633
|
+
"message": "Links to cross-origin destinations are unsafe"
|
|
634
|
+
},
|
|
635
|
+
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | title": {
|
|
636
|
+
"message": "Links to cross-origin destinations are safe"
|
|
637
|
+
},
|
|
638
|
+
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | warning": {
|
|
639
|
+
"message": "Unable to determine the destination for anchor ({anchorHTML}). If not used as a hyperlink, consider removing target=_blank."
|
|
640
|
+
},
|
|
641
|
+
"lighthouse-core/audits/dobetterweb/geolocation-on-start.js | description": {
|
|
642
|
+
"message": "Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to a user action instead. [Learn more](https://web.dev/geolocation-on-start/)."
|
|
643
|
+
},
|
|
644
|
+
"lighthouse-core/audits/dobetterweb/geolocation-on-start.js | failureTitle": {
|
|
645
|
+
"message": "Requests the geolocation permission on page load"
|
|
646
|
+
},
|
|
647
|
+
"lighthouse-core/audits/dobetterweb/geolocation-on-start.js | title": {
|
|
648
|
+
"message": "Avoids requesting the geolocation permission on page load"
|
|
649
|
+
},
|
|
650
|
+
"lighthouse-core/audits/dobetterweb/js-libraries.js | columnVersion": {
|
|
651
|
+
"message": "Version"
|
|
652
|
+
},
|
|
653
|
+
"lighthouse-core/audits/dobetterweb/js-libraries.js | description": {
|
|
654
|
+
"message": "All front-end JavaScript libraries detected on the page. [Learn more](https://web.dev/js-libraries/)."
|
|
655
|
+
},
|
|
656
|
+
"lighthouse-core/audits/dobetterweb/js-libraries.js | title": {
|
|
657
|
+
"message": "Detected JavaScript libraries"
|
|
658
|
+
},
|
|
659
|
+
"lighthouse-core/audits/dobetterweb/no-document-write.js | description": {
|
|
660
|
+
"message": "For users on slow connections, external scripts dynamically injected via `document.write()` can delay page load by tens of seconds. [Learn more](https://web.dev/no-document-write/)."
|
|
661
|
+
},
|
|
662
|
+
"lighthouse-core/audits/dobetterweb/no-document-write.js | failureTitle": {
|
|
663
|
+
"message": "Avoid `document.write()`"
|
|
664
|
+
},
|
|
665
|
+
"lighthouse-core/audits/dobetterweb/no-document-write.js | title": {
|
|
666
|
+
"message": "Avoids `document.write()`"
|
|
667
|
+
},
|
|
668
|
+
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | columnSeverity": {
|
|
669
|
+
"message": "Highest Severity"
|
|
670
|
+
},
|
|
671
|
+
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | columnVersion": {
|
|
672
|
+
"message": "Library Version"
|
|
673
|
+
},
|
|
674
|
+
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | columnVuln": {
|
|
675
|
+
"message": "Vulnerability Count"
|
|
676
|
+
},
|
|
677
|
+
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | description": {
|
|
678
|
+
"message": "Some third-party scripts may contain known security vulnerabilities that are easily identified and exploited by attackers. [Learn more](https://web.dev/no-vulnerable-libraries/)."
|
|
679
|
+
},
|
|
680
|
+
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | displayValue": {
|
|
681
|
+
"message": "{itemCount,plural, =1{1 vulnerability detected}zero{# vulnerabilities detected}two{# vulnerabilities detected}few{# vulnerabilities detected}many{# vulnerabilities detected}other{# vulnerabilities detected}}"
|
|
682
|
+
},
|
|
683
|
+
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | failureTitle": {
|
|
684
|
+
"message": "Includes front-end JavaScript libraries with known security vulnerabilities"
|
|
685
|
+
},
|
|
686
|
+
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | rowSeverityHigh": {
|
|
687
|
+
"message": "High"
|
|
688
|
+
},
|
|
689
|
+
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | rowSeverityLow": {
|
|
690
|
+
"message": "Low"
|
|
691
|
+
},
|
|
692
|
+
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | rowSeverityMedium": {
|
|
693
|
+
"message": "Medium"
|
|
694
|
+
},
|
|
695
|
+
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | title": {
|
|
696
|
+
"message": "Avoids front-end JavaScript libraries with known security vulnerabilities"
|
|
697
|
+
},
|
|
698
|
+
"lighthouse-core/audits/dobetterweb/notification-on-start.js | description": {
|
|
699
|
+
"message": "Users are mistrustful of or confused by sites that request to send notifications without context. Consider tying the request to user gestures instead. [Learn more](https://web.dev/notification-on-start/)."
|
|
700
|
+
},
|
|
701
|
+
"lighthouse-core/audits/dobetterweb/notification-on-start.js | failureTitle": {
|
|
702
|
+
"message": "Requests the notification permission on page load"
|
|
703
|
+
},
|
|
704
|
+
"lighthouse-core/audits/dobetterweb/notification-on-start.js | title": {
|
|
705
|
+
"message": "Avoids requesting the notification permission on page load"
|
|
706
|
+
},
|
|
707
|
+
"lighthouse-core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
|
|
708
|
+
"message": "Preventing password pasting undermines good security policy. [Learn more](https://web.dev/password-inputs-can-be-pasted-into/)."
|
|
709
|
+
},
|
|
710
|
+
"lighthouse-core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
|
|
711
|
+
"message": "Prevents users to paste into password fields"
|
|
712
|
+
},
|
|
713
|
+
"lighthouse-core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
|
|
714
|
+
"message": "Allows users to paste into password fields"
|
|
715
|
+
},
|
|
716
|
+
"lighthouse-core/audits/dobetterweb/uses-http2.js | columnProtocol": {
|
|
717
|
+
"message": "Protocol"
|
|
718
|
+
},
|
|
719
|
+
"lighthouse-core/audits/dobetterweb/uses-http2.js | description": {
|
|
720
|
+
"message": "HTTP/2 offers many benefits over HTTP/1.1, including binary headers, multiplexing, and server push. [Learn more](https://web.dev/uses-http2/)."
|
|
721
|
+
},
|
|
722
|
+
"lighthouse-core/audits/dobetterweb/uses-http2.js | displayValue": {
|
|
723
|
+
"message": "{itemCount,plural, =1{1 request not served via HTTP/2}zero{# requests not served via HTTP/2}two{# requests not served via HTTP/2}few{# requests not served via HTTP/2}many{# requests not served via HTTP/2}other{# requests not served via HTTP/2}}"
|
|
724
|
+
},
|
|
725
|
+
"lighthouse-core/audits/dobetterweb/uses-http2.js | title": {
|
|
726
|
+
"message": "Use HTTP/2"
|
|
727
|
+
},
|
|
728
|
+
"lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js | description": {
|
|
729
|
+
"message": "Consider marking your touch and wheel event listeners as `passive` to improve your page's scroll performance. [Learn more](https://web.dev/uses-passive-event-listeners/)."
|
|
730
|
+
},
|
|
731
|
+
"lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js | failureTitle": {
|
|
732
|
+
"message": "Does not use passive listeners to improve scrolling performance"
|
|
733
|
+
},
|
|
734
|
+
"lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js | title": {
|
|
735
|
+
"message": "Uses passive listeners to improve scrolling performance"
|
|
736
|
+
},
|
|
737
|
+
"lighthouse-core/audits/errors-in-console.js | description": {
|
|
738
|
+
"message": "Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. [Learn more](https://web.dev/errors-in-console/)"
|
|
739
|
+
},
|
|
740
|
+
"lighthouse-core/audits/errors-in-console.js | failureTitle": {
|
|
741
|
+
"message": "Browser errors were logged to the console"
|
|
742
|
+
},
|
|
743
|
+
"lighthouse-core/audits/errors-in-console.js | title": {
|
|
744
|
+
"message": "No browser errors logged to the console"
|
|
745
|
+
},
|
|
746
|
+
"lighthouse-core/audits/font-display.js | description": {
|
|
747
|
+
"message": "Leverage the font-display CSS feature to ensure text is user-visible while webfonts are loading. [Learn more](https://web.dev/font-display/)."
|
|
748
|
+
},
|
|
749
|
+
"lighthouse-core/audits/font-display.js | failureTitle": {
|
|
750
|
+
"message": "Ensure text remains visible during webfont load"
|
|
751
|
+
},
|
|
752
|
+
"lighthouse-core/audits/font-display.js | title": {
|
|
753
|
+
"message": "All text remains visible during webfont loads"
|
|
754
|
+
},
|
|
755
|
+
"lighthouse-core/audits/font-display.js | undeclaredFontOriginWarning": {
|
|
756
|
+
"message": "{fontCountForOrigin,plural, =1{Lighthouse was unable to automatically check the `font-display` value for the origin {fontOrigin}.}zero{Lighthouse was unable to automatically check the `font-display` values for the origin {fontOrigin}.}two{Lighthouse was unable to automatically check the `font-display` values for the origin {fontOrigin}.}few{Lighthouse was unable to automatically check the `font-display` values for the origin {fontOrigin}.}many{Lighthouse was unable to automatically check the `font-display` values for the origin {fontOrigin}.}other{Lighthouse was unable to automatically check the `font-display` values for the origin {fontOrigin}.}}"
|
|
757
|
+
},
|
|
758
|
+
"lighthouse-core/audits/image-aspect-ratio.js | columnActual": {
|
|
759
|
+
"message": "Aspect Ratio (Actual)"
|
|
760
|
+
},
|
|
761
|
+
"lighthouse-core/audits/image-aspect-ratio.js | columnDisplayed": {
|
|
762
|
+
"message": "Aspect Ratio (Displayed)"
|
|
763
|
+
},
|
|
764
|
+
"lighthouse-core/audits/image-aspect-ratio.js | description": {
|
|
765
|
+
"message": "Image display dimensions should match natural aspect ratio. [Learn more](https://web.dev/image-aspect-ratio/)."
|
|
766
|
+
},
|
|
767
|
+
"lighthouse-core/audits/image-aspect-ratio.js | failureTitle": {
|
|
768
|
+
"message": "Displays images with incorrect aspect ratio"
|
|
769
|
+
},
|
|
770
|
+
"lighthouse-core/audits/image-aspect-ratio.js | title": {
|
|
771
|
+
"message": "Displays images with correct aspect ratio"
|
|
772
|
+
},
|
|
773
|
+
"lighthouse-core/audits/image-size-responsive.js | columnActual": {
|
|
774
|
+
"message": "Actual size"
|
|
775
|
+
},
|
|
776
|
+
"lighthouse-core/audits/image-size-responsive.js | columnDisplayed": {
|
|
777
|
+
"message": "Displayed size"
|
|
778
|
+
},
|
|
779
|
+
"lighthouse-core/audits/image-size-responsive.js | columnExpected": {
|
|
780
|
+
"message": "Expected size"
|
|
781
|
+
},
|
|
782
|
+
"lighthouse-core/audits/image-size-responsive.js | description": {
|
|
783
|
+
"message": "Image natural dimensions should be proportional to the display size and the pixel ratio to maximize image clarity. [Learn more](https://web.dev/serve-responsive-images/)."
|
|
784
|
+
},
|
|
785
|
+
"lighthouse-core/audits/image-size-responsive.js | failureTitle": {
|
|
786
|
+
"message": "Serves images with low resolution"
|
|
787
|
+
},
|
|
788
|
+
"lighthouse-core/audits/image-size-responsive.js | title": {
|
|
789
|
+
"message": "Serves images with appropriate resolution"
|
|
790
|
+
},
|
|
791
|
+
"lighthouse-core/audits/installable-manifest.js | description": {
|
|
792
|
+
"message": "Browsers can proactively prompt users to add your app to their homescreen, which can lead to higher engagement. [Learn more](https://web.dev/installable-manifest/)."
|
|
793
|
+
},
|
|
794
|
+
"lighthouse-core/audits/installable-manifest.js | failureTitle": {
|
|
795
|
+
"message": "Web app manifest does not meet the installability requirements"
|
|
796
|
+
},
|
|
797
|
+
"lighthouse-core/audits/installable-manifest.js | title": {
|
|
798
|
+
"message": "Web app manifest meets the installability requirements"
|
|
799
|
+
},
|
|
800
|
+
"lighthouse-core/audits/is-on-https.js | allowed": {
|
|
801
|
+
"message": "Allowed"
|
|
802
|
+
},
|
|
803
|
+
"lighthouse-core/audits/is-on-https.js | blocked": {
|
|
804
|
+
"message": "Blocked"
|
|
805
|
+
},
|
|
806
|
+
"lighthouse-core/audits/is-on-https.js | columnInsecureURL": {
|
|
807
|
+
"message": "Insecure URL"
|
|
808
|
+
},
|
|
809
|
+
"lighthouse-core/audits/is-on-https.js | columnResolution": {
|
|
810
|
+
"message": "Request Resolution"
|
|
811
|
+
},
|
|
812
|
+
"lighthouse-core/audits/is-on-https.js | description": {
|
|
813
|
+
"message": "All sites should be protected with HTTPS, even ones that don't handle sensitive data. This includes avoiding [mixed content](https://developers.google.com/web/fundamentals/security/prevent-mixed-content/what-is-mixed-content), where some resources are loaded over HTTP despite the initial request being served over HTTPS. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. [Learn more](https://web.dev/is-on-https/)."
|
|
814
|
+
},
|
|
815
|
+
"lighthouse-core/audits/is-on-https.js | displayValue": {
|
|
816
|
+
"message": "{itemCount,plural, =1{1 insecure request found}zero{# insecure requests found}two{# insecure requests found}few{# insecure requests found}many{# insecure requests found}other{# insecure requests found}}"
|
|
817
|
+
},
|
|
818
|
+
"lighthouse-core/audits/is-on-https.js | failureTitle": {
|
|
819
|
+
"message": "Does not use HTTPS"
|
|
820
|
+
},
|
|
821
|
+
"lighthouse-core/audits/is-on-https.js | title": {
|
|
822
|
+
"message": "Uses HTTPS"
|
|
823
|
+
},
|
|
824
|
+
"lighthouse-core/audits/is-on-https.js | upgraded": {
|
|
825
|
+
"message": "Automatically upgraded to HTTPS"
|
|
826
|
+
},
|
|
827
|
+
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
828
|
+
"message": "Allowed with warning"
|
|
829
|
+
},
|
|
830
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
831
|
+
"message": "Library"
|
|
832
|
+
},
|
|
833
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
834
|
+
"message": "Large JavaScript libraries can lead to poor performance. Prefer smaller, functionally equivalent libraries to reduce your bundle size. [Learn more](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)."
|
|
835
|
+
},
|
|
836
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
837
|
+
"message": "{libraryCount,plural, =1{1 large library found}zero{# large libraries found}two{# large libraries found}few{# large libraries found}many{# large libraries found}other{# large libraries found}}"
|
|
838
|
+
},
|
|
839
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
840
|
+
"message": "Replace unnecessarily large JavaScript libraries"
|
|
841
|
+
},
|
|
842
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
843
|
+
"message": "Avoids large JavaScript libraries with smaller alternatives"
|
|
844
|
+
},
|
|
845
|
+
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
846
|
+
"message": "This is the largest contentful element painted within the viewport. [Learn More](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
847
|
+
},
|
|
848
|
+
"lighthouse-core/audits/largest-contentful-paint-element.js | title": {
|
|
849
|
+
"message": "Largest Contentful Paint element"
|
|
850
|
+
},
|
|
851
|
+
"lighthouse-core/audits/layout-shift-elements.js | columnContribution": {
|
|
852
|
+
"message": "CLS Contribution"
|
|
853
|
+
},
|
|
854
|
+
"lighthouse-core/audits/layout-shift-elements.js | description": {
|
|
855
|
+
"message": "These DOM elements contribute most to the CLS of the page."
|
|
856
|
+
},
|
|
857
|
+
"lighthouse-core/audits/layout-shift-elements.js | title": {
|
|
858
|
+
"message": "Avoid large layout shifts"
|
|
859
|
+
},
|
|
860
|
+
"lighthouse-core/audits/long-tasks.js | description": {
|
|
861
|
+
"message": "Lists the longest tasks on the main thread, useful for identifying worst contributors to input delay. [Learn more](https://web.dev/long-tasks-devtools/)"
|
|
862
|
+
},
|
|
863
|
+
"lighthouse-core/audits/long-tasks.js | displayValue": {
|
|
864
|
+
"message": "{itemCount,plural, =1{# long task found}zero{# long tasks found}two{# long tasks found}few{# long tasks found}many{# long tasks found}other{# long tasks found}}"
|
|
865
|
+
},
|
|
866
|
+
"lighthouse-core/audits/long-tasks.js | title": {
|
|
867
|
+
"message": "Avoid long main-thread tasks"
|
|
868
|
+
},
|
|
869
|
+
"lighthouse-core/audits/mainthread-work-breakdown.js | columnCategory": {
|
|
870
|
+
"message": "Category"
|
|
871
|
+
},
|
|
872
|
+
"lighthouse-core/audits/mainthread-work-breakdown.js | description": {
|
|
873
|
+
"message": "Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. [Learn more](https://web.dev/mainthread-work-breakdown/)"
|
|
874
|
+
},
|
|
875
|
+
"lighthouse-core/audits/mainthread-work-breakdown.js | failureTitle": {
|
|
876
|
+
"message": "Minimize main-thread work"
|
|
877
|
+
},
|
|
878
|
+
"lighthouse-core/audits/mainthread-work-breakdown.js | title": {
|
|
879
|
+
"message": "Minimizes main-thread work"
|
|
880
|
+
},
|
|
881
|
+
"lighthouse-core/audits/manual/pwa-cross-browser.js | description": {
|
|
882
|
+
"message": "To reach the most number of users, sites should work across every major browser. [Learn more](https://web.dev/pwa-cross-browser/)."
|
|
883
|
+
},
|
|
884
|
+
"lighthouse-core/audits/manual/pwa-cross-browser.js | title": {
|
|
885
|
+
"message": "Site works cross-browser"
|
|
886
|
+
},
|
|
887
|
+
"lighthouse-core/audits/manual/pwa-each-page-has-url.js | description": {
|
|
888
|
+
"message": "Ensure individual pages are deep linkable via URL and that URLs are unique for the purpose of shareability on social media. [Learn more](https://web.dev/pwa-each-page-has-url/)."
|
|
889
|
+
},
|
|
890
|
+
"lighthouse-core/audits/manual/pwa-each-page-has-url.js | title": {
|
|
891
|
+
"message": "Each page has a URL"
|
|
892
|
+
},
|
|
893
|
+
"lighthouse-core/audits/manual/pwa-page-transitions.js | description": {
|
|
894
|
+
"message": "Transitions should feel snappy as you tap around, even on a slow network. This experience is key to a user's perception of performance. [Learn more](https://web.dev/pwa-page-transitions/)."
|
|
895
|
+
},
|
|
896
|
+
"lighthouse-core/audits/manual/pwa-page-transitions.js | title": {
|
|
897
|
+
"message": "Page transitions don't feel like they block on the network"
|
|
898
|
+
},
|
|
899
|
+
"lighthouse-core/audits/maskable-icon.js | description": {
|
|
900
|
+
"message": "A maskable icon ensures that the image fills the entire shape without being letterboxed when installing the app on a device. [Learn more](https://web.dev/maskable-icon-audit/)."
|
|
901
|
+
},
|
|
902
|
+
"lighthouse-core/audits/maskable-icon.js | failureTitle": {
|
|
903
|
+
"message": "Manifest doesn't have a maskable icon"
|
|
904
|
+
},
|
|
905
|
+
"lighthouse-core/audits/maskable-icon.js | title": {
|
|
906
|
+
"message": "Manifest has a maskable icon"
|
|
907
|
+
},
|
|
908
|
+
"lighthouse-core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
909
|
+
"message": "Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more](https://web.dev/cls/)."
|
|
910
|
+
},
|
|
911
|
+
"lighthouse-core/audits/metrics/estimated-input-latency.js | description": {
|
|
912
|
+
"message": "Estimated Input Latency is an estimate of how long your app takes to respond to user input, in milliseconds, during the busiest 5s window of page load. If your latency is higher than 50 ms, users may perceive your app as laggy. [Learn more](https://web.dev/estimated-input-latency/)."
|
|
913
|
+
},
|
|
914
|
+
"lighthouse-core/audits/metrics/first-contentful-paint.js | description": {
|
|
915
|
+
"message": "First Contentful Paint marks the time at which the first text or image is painted. [Learn more](https://web.dev/first-contentful-paint/)."
|
|
916
|
+
},
|
|
917
|
+
"lighthouse-core/audits/metrics/first-cpu-idle.js | description": {
|
|
918
|
+
"message": "First CPU Idle marks the first time at which the page's main thread is quiet enough to handle input. [Learn more](https://web.dev/first-cpu-idle/)."
|
|
919
|
+
},
|
|
920
|
+
"lighthouse-core/audits/metrics/first-meaningful-paint.js | description": {
|
|
921
|
+
"message": "First Meaningful Paint measures when the primary content of a page is visible. [Learn more](https://web.dev/first-meaningful-paint/)."
|
|
922
|
+
},
|
|
923
|
+
"lighthouse-core/audits/metrics/interactive.js | description": {
|
|
924
|
+
"message": "Time to interactive is the amount of time it takes for the page to become fully interactive. [Learn more](https://web.dev/interactive/)."
|
|
925
|
+
},
|
|
926
|
+
"lighthouse-core/audits/metrics/largest-contentful-paint.js | description": {
|
|
927
|
+
"message": "Largest Contentful Paint marks the time at which the largest text or image is painted. [Learn More](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
928
|
+
},
|
|
929
|
+
"lighthouse-core/audits/metrics/max-potential-fid.js | description": {
|
|
930
|
+
"message": "The maximum potential First Input Delay that your users could experience is the duration of the longest task. [Learn more](https://web.dev/lighthouse-max-potential-fid/)."
|
|
931
|
+
},
|
|
932
|
+
"lighthouse-core/audits/metrics/speed-index.js | description": {
|
|
933
|
+
"message": "Speed Index shows how quickly the contents of a page are visibly populated. [Learn more](https://web.dev/speed-index/)."
|
|
934
|
+
},
|
|
935
|
+
"lighthouse-core/audits/metrics/total-blocking-time.js | description": {
|
|
936
|
+
"message": "Sum of all time periods between FCP and Time to Interactive, when task length exceeded 50ms, expressed in milliseconds. [Learn more](https://web.dev/lighthouse-total-blocking-time/)."
|
|
937
|
+
},
|
|
938
|
+
"lighthouse-core/audits/network-rtt.js | description": {
|
|
939
|
+
"message": "Network round trip times (RTT) have a large impact on performance. If the RTT to an origin is high, it's an indication that servers closer to the user could improve performance. [Learn more](https://hpbn.co/primer-on-latency-and-bandwidth/)."
|
|
940
|
+
},
|
|
941
|
+
"lighthouse-core/audits/network-rtt.js | title": {
|
|
942
|
+
"message": "Network Round Trip Times"
|
|
943
|
+
},
|
|
944
|
+
"lighthouse-core/audits/network-server-latency.js | description": {
|
|
945
|
+
"message": "Server latencies can impact web performance. If the server latency of an origin is high, it's an indication the server is overloaded or has poor backend performance. [Learn more](https://hpbn.co/primer-on-web-performance/#analyzing-the-resource-waterfall)."
|
|
946
|
+
},
|
|
947
|
+
"lighthouse-core/audits/network-server-latency.js | title": {
|
|
948
|
+
"message": "Server Backend Latencies"
|
|
949
|
+
},
|
|
950
|
+
"lighthouse-core/audits/no-unload-listeners.js | description": {
|
|
951
|
+
"message": "The `unload` event does not fire reliably and listening for it can prevent browser optimizations like the Back-Forward Cache. Consider using the `pagehide` or `visibilitychange` events instead. [Learn More](https://developers.google.com/web/updates/2018/07/page-lifecycle-api#the-unload-event)"
|
|
952
|
+
},
|
|
953
|
+
"lighthouse-core/audits/no-unload-listeners.js | failureTitle": {
|
|
954
|
+
"message": "Registers an `unload` listener"
|
|
955
|
+
},
|
|
956
|
+
"lighthouse-core/audits/no-unload-listeners.js | title": {
|
|
957
|
+
"message": "Avoids `unload` event listeners"
|
|
958
|
+
},
|
|
959
|
+
"lighthouse-core/audits/non-composited-animations.js | description": {
|
|
960
|
+
"message": "Animations which are not composited can be janky and increase CLS. [Learn more](https://web.dev/non-composited-animations)"
|
|
961
|
+
},
|
|
962
|
+
"lighthouse-core/audits/non-composited-animations.js | displayValue": {
|
|
963
|
+
"message": "{itemCount,plural, =1{# animated element found}zero{# animated elements found}two{# animated elements found}few{# animated elements found}many{# animated elements found}other{# animated elements found}}"
|
|
964
|
+
},
|
|
965
|
+
"lighthouse-core/audits/non-composited-animations.js | filterMayMovePixels": {
|
|
966
|
+
"message": "Filter-related property may move pixels"
|
|
967
|
+
},
|
|
968
|
+
"lighthouse-core/audits/non-composited-animations.js | incompatibleAnimations": {
|
|
969
|
+
"message": "Target has another animation which is incompatible"
|
|
970
|
+
},
|
|
971
|
+
"lighthouse-core/audits/non-composited-animations.js | nonReplaceCompositeMode": {
|
|
972
|
+
"message": "Effect has composite mode other than \"replace\""
|
|
973
|
+
},
|
|
974
|
+
"lighthouse-core/audits/non-composited-animations.js | title": {
|
|
975
|
+
"message": "Avoid non-composited animations"
|
|
976
|
+
},
|
|
977
|
+
"lighthouse-core/audits/non-composited-animations.js | transformDependsBoxSize": {
|
|
978
|
+
"message": "Transform-related property depends on box size"
|
|
979
|
+
},
|
|
980
|
+
"lighthouse-core/audits/non-composited-animations.js | unsupportedCSSProperty": {
|
|
981
|
+
"message": "{propertyCount,plural, =1{Unsupported CSS Property: {properties}}zero{Unsupported CSS Properties: {properties}}two{Unsupported CSS Properties: {properties}}few{Unsupported CSS Properties: {properties}}many{Unsupported CSS Properties: {properties}}other{Unsupported CSS Properties: {properties}}}"
|
|
982
|
+
},
|
|
983
|
+
"lighthouse-core/audits/non-composited-animations.js | unsupportedTimingParameters": {
|
|
984
|
+
"message": "Effect has unsupported timing parameters"
|
|
985
|
+
},
|
|
986
|
+
"lighthouse-core/audits/performance-budget.js | description": {
|
|
987
|
+
"message": "Keep the quantity and size of network requests under the targets set by the provided performance budget. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/budgets)."
|
|
988
|
+
},
|
|
989
|
+
"lighthouse-core/audits/performance-budget.js | requestCountOverBudget": {
|
|
990
|
+
"message": "{count,plural, =1{1 request}zero{# requests}two{# requests}few{# requests}many{# requests}other{# requests}}"
|
|
991
|
+
},
|
|
992
|
+
"lighthouse-core/audits/performance-budget.js | title": {
|
|
993
|
+
"message": "Performance budget"
|
|
994
|
+
},
|
|
995
|
+
"lighthouse-core/audits/preload-fonts.js | description": {
|
|
996
|
+
"message": "Preload `optional` fonts so first-time visitors may use them. [Learn More](https://web.dev/preload-optional-fonts/)"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/preload-fonts.js | failureTitle": {
|
|
999
|
+
"message": "Fonts with `font-display: optional` are not preloaded"
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/preload-fonts.js | title": {
|
|
1002
|
+
"message": "Fonts with `font-display: optional` are preloaded"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/preload-lcp-image.js | description": {
|
|
1005
|
+
"message": "Preload the image used by the LCP element in order to improve your LCP time. [Learn more](https://web.dev/optimize-lcp/#preload-important-resources)."
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/preload-lcp-image.js | title": {
|
|
1008
|
+
"message": "Preload Largest Contentful Paint image"
|
|
1009
|
+
},
|
|
1010
|
+
"lighthouse-core/audits/redirects-http.js | description": {
|
|
1011
|
+
"message": "If you've already set up HTTPS, make sure that you redirect all HTTP traffic to HTTPS in order to enable secure web features for all your users. [Learn more](https://web.dev/redirects-http/)."
|
|
1012
|
+
},
|
|
1013
|
+
"lighthouse-core/audits/redirects-http.js | failureTitle": {
|
|
1014
|
+
"message": "Does not redirect HTTP traffic to HTTPS"
|
|
1015
|
+
},
|
|
1016
|
+
"lighthouse-core/audits/redirects-http.js | title": {
|
|
1017
|
+
"message": "Redirects HTTP traffic to HTTPS"
|
|
1018
|
+
},
|
|
1019
|
+
"lighthouse-core/audits/redirects.js | description": {
|
|
1020
|
+
"message": "Redirects introduce additional delays before the page can be loaded. [Learn more](https://web.dev/redirects/)."
|
|
1021
|
+
},
|
|
1022
|
+
"lighthouse-core/audits/redirects.js | title": {
|
|
1023
|
+
"message": "Avoid multiple page redirects"
|
|
1024
|
+
},
|
|
1025
|
+
"lighthouse-core/audits/resource-summary.js | description": {
|
|
1026
|
+
"message": "To set budgets for the quantity and size of page resources, add a budget.json file. [Learn more](https://web.dev/use-lighthouse-for-performance-budgets/)."
|
|
1027
|
+
},
|
|
1028
|
+
"lighthouse-core/audits/resource-summary.js | displayValue": {
|
|
1029
|
+
"message": "{requestCount,plural, =1{1 request • {byteCount, number, bytes} KiB}zero{# requests • {byteCount, number, bytes} KiB}two{# requests • {byteCount, number, bytes} KiB}few{# requests • {byteCount, number, bytes} KiB}many{# requests • {byteCount, number, bytes} KiB}other{# requests • {byteCount, number, bytes} KiB}}"
|
|
1030
|
+
},
|
|
1031
|
+
"lighthouse-core/audits/resource-summary.js | title": {
|
|
1032
|
+
"message": "Keep request counts low and transfer sizes small"
|
|
1033
|
+
},
|
|
1034
|
+
"lighthouse-core/audits/seo/canonical.js | description": {
|
|
1035
|
+
"message": "Canonical links suggest which URL to show in search results. [Learn more](https://web.dev/canonical/)."
|
|
1036
|
+
},
|
|
1037
|
+
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1038
|
+
"message": "Multiple conflicting URLs ({urlList})"
|
|
1039
|
+
},
|
|
1040
|
+
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1041
|
+
"message": "Points to a different domain ({url})"
|
|
1042
|
+
},
|
|
1043
|
+
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1044
|
+
"message": "Invalid URL ({url})"
|
|
1045
|
+
},
|
|
1046
|
+
"lighthouse-core/audits/seo/canonical.js | explanationPointsElsewhere": {
|
|
1047
|
+
"message": "Points to another `hreflang` location ({url})"
|
|
1048
|
+
},
|
|
1049
|
+
"lighthouse-core/audits/seo/canonical.js | explanationRelative": {
|
|
1050
|
+
"message": "Relative URL ({url})"
|
|
1051
|
+
},
|
|
1052
|
+
"lighthouse-core/audits/seo/canonical.js | explanationRoot": {
|
|
1053
|
+
"message": "Points to the domain's root URL (the homepage), instead of an equivalent page of content"
|
|
1054
|
+
},
|
|
1055
|
+
"lighthouse-core/audits/seo/canonical.js | failureTitle": {
|
|
1056
|
+
"message": "Document does not have a valid `rel=canonical`"
|
|
1057
|
+
},
|
|
1058
|
+
"lighthouse-core/audits/seo/canonical.js | title": {
|
|
1059
|
+
"message": "Document has a valid `rel=canonical`"
|
|
1060
|
+
},
|
|
1061
|
+
"lighthouse-core/audits/seo/crawlable-anchors.js | columnFailingLink": {
|
|
1062
|
+
"message": "Uncrawlable Link"
|
|
1063
|
+
},
|
|
1064
|
+
"lighthouse-core/audits/seo/crawlable-anchors.js | description": {
|
|
1065
|
+
"message": "Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. [Learn More](https://support.google.com/webmasters/answer/9112205)"
|
|
1066
|
+
},
|
|
1067
|
+
"lighthouse-core/audits/seo/crawlable-anchors.js | failureTitle": {
|
|
1068
|
+
"message": "Links are not crawlable"
|
|
1069
|
+
},
|
|
1070
|
+
"lighthouse-core/audits/seo/crawlable-anchors.js | title": {
|
|
1071
|
+
"message": "Links are crawlable"
|
|
1072
|
+
},
|
|
1073
|
+
"lighthouse-core/audits/seo/font-size.js | additionalIllegibleText": {
|
|
1074
|
+
"message": "Add'l illegible text"
|
|
1075
|
+
},
|
|
1076
|
+
"lighthouse-core/audits/seo/font-size.js | columnFontSize": {
|
|
1077
|
+
"message": "Font Size"
|
|
1078
|
+
},
|
|
1079
|
+
"lighthouse-core/audits/seo/font-size.js | columnPercentPageText": {
|
|
1080
|
+
"message": "% of Page Text"
|
|
1081
|
+
},
|
|
1082
|
+
"lighthouse-core/audits/seo/font-size.js | columnSelector": {
|
|
1083
|
+
"message": "Selector"
|
|
1084
|
+
},
|
|
1085
|
+
"lighthouse-core/audits/seo/font-size.js | description": {
|
|
1086
|
+
"message": "Font sizes less than 12px are too small to be legible and require mobile visitors to “pinch to zoom” in order to read. Strive to have >60% of page text ≥12px. [Learn more](https://web.dev/font-size/)."
|
|
1087
|
+
},
|
|
1088
|
+
"lighthouse-core/audits/seo/font-size.js | displayValue": {
|
|
1089
|
+
"message": "{decimalProportion, number, extendedPercent} legible text"
|
|
1090
|
+
},
|
|
1091
|
+
"lighthouse-core/audits/seo/font-size.js | explanationViewport": {
|
|
1092
|
+
"message": "Text is illegible because there's no viewport meta tag optimized for mobile screens."
|
|
1093
|
+
},
|
|
1094
|
+
"lighthouse-core/audits/seo/font-size.js | failureTitle": {
|
|
1095
|
+
"message": "Document doesn't use legible font sizes"
|
|
1096
|
+
},
|
|
1097
|
+
"lighthouse-core/audits/seo/font-size.js | legibleText": {
|
|
1098
|
+
"message": "Legible text"
|
|
1099
|
+
},
|
|
1100
|
+
"lighthouse-core/audits/seo/font-size.js | title": {
|
|
1101
|
+
"message": "Document uses legible font sizes"
|
|
1102
|
+
},
|
|
1103
|
+
"lighthouse-core/audits/seo/hreflang.js | description": {
|
|
1104
|
+
"message": "hreflang links tell search engines what version of a page they should list in search results for a given language or region. [Learn more](https://web.dev/hreflang/)."
|
|
1105
|
+
},
|
|
1106
|
+
"lighthouse-core/audits/seo/hreflang.js | failureTitle": {
|
|
1107
|
+
"message": "Document doesn't have a valid `hreflang`"
|
|
1108
|
+
},
|
|
1109
|
+
"lighthouse-core/audits/seo/hreflang.js | notFullyQualified": {
|
|
1110
|
+
"message": "Relative href value"
|
|
1111
|
+
},
|
|
1112
|
+
"lighthouse-core/audits/seo/hreflang.js | title": {
|
|
1113
|
+
"message": "Document has a valid `hreflang`"
|
|
1114
|
+
},
|
|
1115
|
+
"lighthouse-core/audits/seo/hreflang.js | unexpectedLanguage": {
|
|
1116
|
+
"message": "Unexpected language code"
|
|
1117
|
+
},
|
|
1118
|
+
"lighthouse-core/audits/seo/http-status-code.js | description": {
|
|
1119
|
+
"message": "Pages with unsuccessful HTTP status codes may not be indexed properly. [Learn more](https://web.dev/http-status-code/)."
|
|
1120
|
+
},
|
|
1121
|
+
"lighthouse-core/audits/seo/http-status-code.js | failureTitle": {
|
|
1122
|
+
"message": "Page has unsuccessful HTTP status code"
|
|
1123
|
+
},
|
|
1124
|
+
"lighthouse-core/audits/seo/http-status-code.js | title": {
|
|
1125
|
+
"message": "Page has successful HTTP status code"
|
|
1126
|
+
},
|
|
1127
|
+
"lighthouse-core/audits/seo/is-crawlable.js | description": {
|
|
1128
|
+
"message": "Search engines are unable to include your pages in search results if they don't have permission to crawl them. [Learn more](https://web.dev/is-crawable/)."
|
|
1129
|
+
},
|
|
1130
|
+
"lighthouse-core/audits/seo/is-crawlable.js | failureTitle": {
|
|
1131
|
+
"message": "Page is blocked from indexing"
|
|
1132
|
+
},
|
|
1133
|
+
"lighthouse-core/audits/seo/is-crawlable.js | title": {
|
|
1134
|
+
"message": "Page isn’t blocked from indexing"
|
|
1135
|
+
},
|
|
1136
|
+
"lighthouse-core/audits/seo/link-text.js | description": {
|
|
1137
|
+
"message": "Descriptive link text helps search engines understand your content. [Learn more](https://web.dev/link-text/)."
|
|
1138
|
+
},
|
|
1139
|
+
"lighthouse-core/audits/seo/link-text.js | displayValue": {
|
|
1140
|
+
"message": "{itemCount,plural, =1{1 link found}zero{# links found}two{# links found}few{# links found}many{# links found}other{# links found}}"
|
|
1141
|
+
},
|
|
1142
|
+
"lighthouse-core/audits/seo/link-text.js | failureTitle": {
|
|
1143
|
+
"message": "Links do not have descriptive text"
|
|
1144
|
+
},
|
|
1145
|
+
"lighthouse-core/audits/seo/link-text.js | title": {
|
|
1146
|
+
"message": "Links have descriptive text"
|
|
1147
|
+
},
|
|
1148
|
+
"lighthouse-core/audits/seo/manual/structured-data.js | description": {
|
|
1149
|
+
"message": "Run the [Structured Data Testing Tool](https://search.google.com/structured-data/testing-tool/) and the [Structured Data Linter](http://linter.structured-data.org/) to validate structured data. [Learn more](https://web.dev/structured-data/)."
|
|
1150
|
+
},
|
|
1151
|
+
"lighthouse-core/audits/seo/manual/structured-data.js | title": {
|
|
1152
|
+
"message": "Structured data is valid"
|
|
1153
|
+
},
|
|
1154
|
+
"lighthouse-core/audits/seo/meta-description.js | description": {
|
|
1155
|
+
"message": "Meta descriptions may be included in search results to concisely summarize page content. [Learn more](https://web.dev/meta-description/)."
|
|
1156
|
+
},
|
|
1157
|
+
"lighthouse-core/audits/seo/meta-description.js | explanation": {
|
|
1158
|
+
"message": "Description text is empty."
|
|
1159
|
+
},
|
|
1160
|
+
"lighthouse-core/audits/seo/meta-description.js | failureTitle": {
|
|
1161
|
+
"message": "Document does not have a meta description"
|
|
1162
|
+
},
|
|
1163
|
+
"lighthouse-core/audits/seo/meta-description.js | title": {
|
|
1164
|
+
"message": "Document has a meta description"
|
|
1165
|
+
},
|
|
1166
|
+
"lighthouse-core/audits/seo/plugins.js | description": {
|
|
1167
|
+
"message": "Search engines can't index plugin content, and many devices restrict plugins or don't support them. [Learn more](https://web.dev/plugins/)."
|
|
1168
|
+
},
|
|
1169
|
+
"lighthouse-core/audits/seo/plugins.js | failureTitle": {
|
|
1170
|
+
"message": "Document uses plugins"
|
|
1171
|
+
},
|
|
1172
|
+
"lighthouse-core/audits/seo/plugins.js | title": {
|
|
1173
|
+
"message": "Document avoids plugins"
|
|
1174
|
+
},
|
|
1175
|
+
"lighthouse-core/audits/seo/robots-txt.js | description": {
|
|
1176
|
+
"message": "If your robots.txt file is malformed, crawlers may not be able to understand how you want your website to be crawled or indexed. [Learn more](https://web.dev/robots-txt/)."
|
|
1177
|
+
},
|
|
1178
|
+
"lighthouse-core/audits/seo/robots-txt.js | displayValueHttpBadCode": {
|
|
1179
|
+
"message": "Request for robots.txt returned HTTP status: {statusCode}"
|
|
1180
|
+
},
|
|
1181
|
+
"lighthouse-core/audits/seo/robots-txt.js | displayValueValidationError": {
|
|
1182
|
+
"message": "{itemCount,plural, =1{1 error found}zero{# errors found}two{# errors found}few{# errors found}many{# errors found}other{# errors found}}"
|
|
1183
|
+
},
|
|
1184
|
+
"lighthouse-core/audits/seo/robots-txt.js | explanation": {
|
|
1185
|
+
"message": "Lighthouse was unable to download a robots.txt file"
|
|
1186
|
+
},
|
|
1187
|
+
"lighthouse-core/audits/seo/robots-txt.js | failureTitle": {
|
|
1188
|
+
"message": "robots.txt is not valid"
|
|
1189
|
+
},
|
|
1190
|
+
"lighthouse-core/audits/seo/robots-txt.js | title": {
|
|
1191
|
+
"message": "robots.txt is valid"
|
|
1192
|
+
},
|
|
1193
|
+
"lighthouse-core/audits/seo/tap-targets.js | description": {
|
|
1194
|
+
"message": "Interactive elements like buttons and links should be large enough (48x48px), and have enough space around them, to be easy enough to tap without overlapping onto other elements. [Learn more](https://web.dev/tap-targets/)."
|
|
1195
|
+
},
|
|
1196
|
+
"lighthouse-core/audits/seo/tap-targets.js | displayValue": {
|
|
1197
|
+
"message": "{decimalProportion, number, percent} appropriately sized tap targets"
|
|
1198
|
+
},
|
|
1199
|
+
"lighthouse-core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
|
|
1200
|
+
"message": "Tap targets are too small because there's no viewport meta tag optimized for mobile screens"
|
|
1201
|
+
},
|
|
1202
|
+
"lighthouse-core/audits/seo/tap-targets.js | failureTitle": {
|
|
1203
|
+
"message": "Tap targets are not sized appropriately"
|
|
1204
|
+
},
|
|
1205
|
+
"lighthouse-core/audits/seo/tap-targets.js | overlappingTargetHeader": {
|
|
1206
|
+
"message": "Overlapping Target"
|
|
1207
|
+
},
|
|
1208
|
+
"lighthouse-core/audits/seo/tap-targets.js | tapTargetHeader": {
|
|
1209
|
+
"message": "Tap Target"
|
|
1210
|
+
},
|
|
1211
|
+
"lighthouse-core/audits/seo/tap-targets.js | title": {
|
|
1212
|
+
"message": "Tap targets are sized appropriately"
|
|
1213
|
+
},
|
|
1214
|
+
"lighthouse-core/audits/server-response-time.js | description": {
|
|
1215
|
+
"message": "Keep the server response time for the main document short because all other requests depend on it. [Learn more](https://web.dev/time-to-first-byte/)."
|
|
1216
|
+
},
|
|
1217
|
+
"lighthouse-core/audits/server-response-time.js | displayValue": {
|
|
1218
|
+
"message": "Root document took {timeInMs, number, milliseconds} ms"
|
|
1219
|
+
},
|
|
1220
|
+
"lighthouse-core/audits/server-response-time.js | failureTitle": {
|
|
1221
|
+
"message": "Reduce initial server response time"
|
|
1222
|
+
},
|
|
1223
|
+
"lighthouse-core/audits/server-response-time.js | title": {
|
|
1224
|
+
"message": "Initial server response time was short"
|
|
1225
|
+
},
|
|
1226
|
+
"lighthouse-core/audits/service-worker.js | description": {
|
|
1227
|
+
"message": "The service worker is the technology that enables your app to use many Progressive Web App features, such as offline, add to homescreen, and push notifications. [Learn more](https://web.dev/service-worker/)."
|
|
1228
|
+
},
|
|
1229
|
+
"lighthouse-core/audits/service-worker.js | explanationBadManifest": {
|
|
1230
|
+
"message": "This page is controlled by a service worker, however no `start_url` was found because manifest failed to parse as valid JSON"
|
|
1231
|
+
},
|
|
1232
|
+
"lighthouse-core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1233
|
+
"message": "This page is controlled by a service worker, however the `start_url` ({startUrl}) is not in the service worker's scope ({scopeUrl})"
|
|
1234
|
+
},
|
|
1235
|
+
"lighthouse-core/audits/service-worker.js | explanationNoManifest": {
|
|
1236
|
+
"message": "This page is controlled by a service worker, however no `start_url` was found because no manifest was fetched."
|
|
1237
|
+
},
|
|
1238
|
+
"lighthouse-core/audits/service-worker.js | explanationOutOfScope": {
|
|
1239
|
+
"message": "This origin has one or more service workers, however the page ({pageUrl}) is not in scope."
|
|
1240
|
+
},
|
|
1241
|
+
"lighthouse-core/audits/service-worker.js | failureTitle": {
|
|
1242
|
+
"message": "Does not register a service worker that controls page and `start_url`"
|
|
1243
|
+
},
|
|
1244
|
+
"lighthouse-core/audits/service-worker.js | title": {
|
|
1245
|
+
"message": "Registers a service worker that controls page and `start_url`"
|
|
1246
|
+
},
|
|
1247
|
+
"lighthouse-core/audits/splash-screen.js | description": {
|
|
1248
|
+
"message": "A themed splash screen ensures a high-quality experience when users launch your app from their homescreens. [Learn more](https://web.dev/splash-screen/)."
|
|
1249
|
+
},
|
|
1250
|
+
"lighthouse-core/audits/splash-screen.js | failureTitle": {
|
|
1251
|
+
"message": "Is not configured for a custom splash screen"
|
|
1252
|
+
},
|
|
1253
|
+
"lighthouse-core/audits/splash-screen.js | title": {
|
|
1254
|
+
"message": "Configured for a custom splash screen"
|
|
1255
|
+
},
|
|
1256
|
+
"lighthouse-core/audits/themed-omnibox.js | description": {
|
|
1257
|
+
"message": "The browser address bar can be themed to match your site. [Learn more](https://web.dev/themed-omnibox/)."
|
|
1258
|
+
},
|
|
1259
|
+
"lighthouse-core/audits/themed-omnibox.js | failureTitle": {
|
|
1260
|
+
"message": "Does not set a theme color for the address bar."
|
|
1261
|
+
},
|
|
1262
|
+
"lighthouse-core/audits/themed-omnibox.js | title": {
|
|
1263
|
+
"message": "Sets a theme color for the address bar."
|
|
1264
|
+
},
|
|
1265
|
+
"lighthouse-core/audits/third-party-summary.js | columnThirdParty": {
|
|
1266
|
+
"message": "Third-Party"
|
|
1267
|
+
},
|
|
1268
|
+
"lighthouse-core/audits/third-party-summary.js | description": {
|
|
1269
|
+
"message": "Third-party code can significantly impact load performance. Limit the number of redundant third-party providers and try to load third-party code after your page has primarily finished loading. [Learn more](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/loading-third-party-javascript/)."
|
|
1270
|
+
},
|
|
1271
|
+
"lighthouse-core/audits/third-party-summary.js | displayValue": {
|
|
1272
|
+
"message": "Third-party code blocked the main thread for {timeInMs, number, milliseconds} ms"
|
|
1273
|
+
},
|
|
1274
|
+
"lighthouse-core/audits/third-party-summary.js | failureTitle": {
|
|
1275
|
+
"message": "Reduce the impact of third-party code"
|
|
1276
|
+
},
|
|
1277
|
+
"lighthouse-core/audits/third-party-summary.js | title": {
|
|
1278
|
+
"message": "Minimize third-party usage"
|
|
1279
|
+
},
|
|
1280
|
+
"lighthouse-core/audits/timing-budget.js | columnMeasurement": {
|
|
1281
|
+
"message": "Measurement"
|
|
1282
|
+
},
|
|
1283
|
+
"lighthouse-core/audits/timing-budget.js | columnTimingMetric": {
|
|
1284
|
+
"message": "Metric"
|
|
1285
|
+
},
|
|
1286
|
+
"lighthouse-core/audits/timing-budget.js | description": {
|
|
1287
|
+
"message": "Set a timing budget to help you keep an eye on the performance of your site. Performant sites load fast and respond to user input events quickly. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/budgets)."
|
|
1288
|
+
},
|
|
1289
|
+
"lighthouse-core/audits/timing-budget.js | title": {
|
|
1290
|
+
"message": "Timing budget"
|
|
1291
|
+
},
|
|
1292
|
+
"lighthouse-core/audits/unsized-images.js | description": {
|
|
1293
|
+
"message": "Set an explicit width and height on image elements to reduce layout shifts and improve CLS. [Learn more](https://web.dev/optimize-cls/#images-without-dimensions)"
|
|
1294
|
+
},
|
|
1295
|
+
"lighthouse-core/audits/unsized-images.js | failureTitle": {
|
|
1296
|
+
"message": "Image elements do not have explicit `width` and `height`"
|
|
1297
|
+
},
|
|
1298
|
+
"lighthouse-core/audits/unsized-images.js | title": {
|
|
1299
|
+
"message": "Image elements have explicit `width` and `height`"
|
|
1300
|
+
},
|
|
1301
|
+
"lighthouse-core/audits/user-timings.js | columnType": {
|
|
1302
|
+
"message": "Type"
|
|
1303
|
+
},
|
|
1304
|
+
"lighthouse-core/audits/user-timings.js | description": {
|
|
1305
|
+
"message": "Consider instrumenting your app with the User Timing API to measure your app's real-world performance during key user experiences. [Learn more](https://web.dev/user-timings/)."
|
|
1306
|
+
},
|
|
1307
|
+
"lighthouse-core/audits/user-timings.js | displayValue": {
|
|
1308
|
+
"message": "{itemCount,plural, =1{1 user timing}zero{# user timings}two{# user timings}few{# user timings}many{# user timings}other{# user timings}}"
|
|
1309
|
+
},
|
|
1310
|
+
"lighthouse-core/audits/user-timings.js | title": {
|
|
1311
|
+
"message": "User Timing marks and measures"
|
|
1312
|
+
},
|
|
1313
|
+
"lighthouse-core/audits/uses-rel-preconnect.js | crossoriginWarning": {
|
|
1314
|
+
"message": "A `<link rel=preconnect>` was found for \"{securityOrigin}\" but was not used by the browser. Check that you are using the `crossorigin` attribute properly."
|
|
1315
|
+
},
|
|
1316
|
+
"lighthouse-core/audits/uses-rel-preconnect.js | description": {
|
|
1317
|
+
"message": "Consider adding `preconnect` or `dns-prefetch` resource hints to establish early connections to important third-party origins. [Learn more](https://web.dev/uses-rel-preconnect/)."
|
|
1318
|
+
},
|
|
1319
|
+
"lighthouse-core/audits/uses-rel-preconnect.js | title": {
|
|
1320
|
+
"message": "Preconnect to required origins"
|
|
1321
|
+
},
|
|
1322
|
+
"lighthouse-core/audits/uses-rel-preconnect.js | tooManyPreconnectLinksWarning": {
|
|
1323
|
+
"message": "More than 2 `<link rel=preconnect>` connections were found. These should be used sparingly and only to the most important origins."
|
|
1324
|
+
},
|
|
1325
|
+
"lighthouse-core/audits/uses-rel-preconnect.js | unusedWarning": {
|
|
1326
|
+
"message": "A `<link rel=preconnect>` was found for \"{securityOrigin}\" but was not used by the browser. Only use `preconnect` for important origins that the page will certainly request."
|
|
1327
|
+
},
|
|
1328
|
+
"lighthouse-core/audits/uses-rel-preload.js | crossoriginWarning": {
|
|
1329
|
+
"message": "A preload `<link>` was found for \"{preloadURL}\" but was not used by the browser. Check that you are using the `crossorigin` attribute properly."
|
|
1330
|
+
},
|
|
1331
|
+
"lighthouse-core/audits/uses-rel-preload.js | description": {
|
|
1332
|
+
"message": "Consider using `<link rel=preload>` to prioritize fetching resources that are currently requested later in page load. [Learn more](https://web.dev/uses-rel-preload/)."
|
|
1333
|
+
},
|
|
1334
|
+
"lighthouse-core/audits/uses-rel-preload.js | title": {
|
|
1335
|
+
"message": "Preload key requests"
|
|
1336
|
+
},
|
|
1337
|
+
"lighthouse-core/audits/valid-source-maps.js | columnMapURL": {
|
|
1338
|
+
"message": "Map URL"
|
|
1339
|
+
},
|
|
1340
|
+
"lighthouse-core/audits/valid-source-maps.js | description": {
|
|
1341
|
+
"message": "Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. [Learn more](https://developers.google.com/web/tools/chrome-devtools/javascript/source-maps)."
|
|
1342
|
+
},
|
|
1343
|
+
"lighthouse-core/audits/valid-source-maps.js | failureTitle": {
|
|
1344
|
+
"message": "Missing source maps for large first-party JavaScript"
|
|
1345
|
+
},
|
|
1346
|
+
"lighthouse-core/audits/valid-source-maps.js | missingSourceMapErrorMessage": {
|
|
1347
|
+
"message": "Large JavaScript file is missing a source map"
|
|
1348
|
+
},
|
|
1349
|
+
"lighthouse-core/audits/valid-source-maps.js | missingSourceMapItemsWarningMesssage": {
|
|
1350
|
+
"message": "{missingItems,plural, =1{Warning: missing 1 item in `.sourcesContent`}zero{Warning: missing # items in `.sourcesContent`}two{Warning: missing # items in `.sourcesContent`}few{Warning: missing # items in `.sourcesContent`}many{Warning: missing # items in `.sourcesContent`}other{Warning: missing # items in `.sourcesContent`}}"
|
|
1351
|
+
},
|
|
1352
|
+
"lighthouse-core/audits/valid-source-maps.js | title": {
|
|
1353
|
+
"message": "Page has valid source maps"
|
|
1354
|
+
},
|
|
1355
|
+
"lighthouse-core/audits/viewport.js | description": {
|
|
1356
|
+
"message": "Add a `<meta name=\"viewport\">` tag to optimize your app for mobile screens. [Learn more](https://web.dev/viewport/)."
|
|
1357
|
+
},
|
|
1358
|
+
"lighthouse-core/audits/viewport.js | explanationNoTag": {
|
|
1359
|
+
"message": "No `<meta name=\"viewport\">` tag found"
|
|
1360
|
+
},
|
|
1361
|
+
"lighthouse-core/audits/viewport.js | failureTitle": {
|
|
1362
|
+
"message": "Does not have a `<meta name=\"viewport\">` tag with `width` or `initial-scale`"
|
|
1363
|
+
},
|
|
1364
|
+
"lighthouse-core/audits/viewport.js | title": {
|
|
1365
|
+
"message": "Has a `<meta name=\"viewport\">` tag with `width` or `initial-scale`"
|
|
1366
|
+
},
|
|
1367
|
+
"lighthouse-core/config/default-config.js | a11yAriaGroupDescription": {
|
|
1368
|
+
"message": "These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader."
|
|
1369
|
+
},
|
|
1370
|
+
"lighthouse-core/config/default-config.js | a11yAriaGroupTitle": {
|
|
1371
|
+
"message": "ARIA"
|
|
1372
|
+
},
|
|
1373
|
+
"lighthouse-core/config/default-config.js | a11yAudioVideoGroupDescription": {
|
|
1374
|
+
"message": "These are opportunities to provide alternative content for audio and video. This may improve the experience for users with hearing or vision impairments."
|
|
1375
|
+
},
|
|
1376
|
+
"lighthouse-core/config/default-config.js | a11yAudioVideoGroupTitle": {
|
|
1377
|
+
"message": "Audio and video"
|
|
1378
|
+
},
|
|
1379
|
+
"lighthouse-core/config/default-config.js | a11yBestPracticesGroupDescription": {
|
|
1380
|
+
"message": "These items highlight common accessibility best practices."
|
|
1381
|
+
},
|
|
1382
|
+
"lighthouse-core/config/default-config.js | a11yBestPracticesGroupTitle": {
|
|
1383
|
+
"message": "Best practices"
|
|
1384
|
+
},
|
|
1385
|
+
"lighthouse-core/config/default-config.js | a11yCategoryDescription": {
|
|
1386
|
+
"message": "These checks highlight opportunities to [improve the accessibility of your web app](https://developers.google.com/web/fundamentals/accessibility). Only a subset of accessibility issues can be automatically detected so manual testing is also encouraged."
|
|
1387
|
+
},
|
|
1388
|
+
"lighthouse-core/config/default-config.js | a11yCategoryManualDescription": {
|
|
1389
|
+
"message": "These items address areas which an automated testing tool cannot cover. Learn more in our guide on [conducting an accessibility review](https://developers.google.com/web/fundamentals/accessibility/how-to-review)."
|
|
1390
|
+
},
|
|
1391
|
+
"lighthouse-core/config/default-config.js | a11yCategoryTitle": {
|
|
1392
|
+
"message": "Accessibility"
|
|
1393
|
+
},
|
|
1394
|
+
"lighthouse-core/config/default-config.js | a11yColorContrastGroupDescription": {
|
|
1395
|
+
"message": "These are opportunities to improve the legibility of your content."
|
|
1396
|
+
},
|
|
1397
|
+
"lighthouse-core/config/default-config.js | a11yColorContrastGroupTitle": {
|
|
1398
|
+
"message": "Contrast"
|
|
1399
|
+
},
|
|
1400
|
+
"lighthouse-core/config/default-config.js | a11yLanguageGroupDescription": {
|
|
1401
|
+
"message": "These are opportunities to improve the interpretation of your content by users in different locales."
|
|
1402
|
+
},
|
|
1403
|
+
"lighthouse-core/config/default-config.js | a11yLanguageGroupTitle": {
|
|
1404
|
+
"message": "Internationalization and localization"
|
|
1405
|
+
},
|
|
1406
|
+
"lighthouse-core/config/default-config.js | a11yNamesLabelsGroupDescription": {
|
|
1407
|
+
"message": "These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader."
|
|
1408
|
+
},
|
|
1409
|
+
"lighthouse-core/config/default-config.js | a11yNamesLabelsGroupTitle": {
|
|
1410
|
+
"message": "Names and labels"
|
|
1411
|
+
},
|
|
1412
|
+
"lighthouse-core/config/default-config.js | a11yNavigationGroupDescription": {
|
|
1413
|
+
"message": "These are opportunities to improve keyboard navigation in your application."
|
|
1414
|
+
},
|
|
1415
|
+
"lighthouse-core/config/default-config.js | a11yNavigationGroupTitle": {
|
|
1416
|
+
"message": "Navigation"
|
|
1417
|
+
},
|
|
1418
|
+
"lighthouse-core/config/default-config.js | a11yTablesListsVideoGroupDescription": {
|
|
1419
|
+
"message": "These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader."
|
|
1420
|
+
},
|
|
1421
|
+
"lighthouse-core/config/default-config.js | a11yTablesListsVideoGroupTitle": {
|
|
1422
|
+
"message": "Tables and lists"
|
|
1423
|
+
},
|
|
1424
|
+
"lighthouse-core/config/default-config.js | bestPracticesBrowserCompatGroupTitle": {
|
|
1425
|
+
"message": "Browser Compatibility"
|
|
1426
|
+
},
|
|
1427
|
+
"lighthouse-core/config/default-config.js | bestPracticesCategoryTitle": {
|
|
1428
|
+
"message": "Best Practices"
|
|
1429
|
+
},
|
|
1430
|
+
"lighthouse-core/config/default-config.js | bestPracticesGeneralGroupTitle": {
|
|
1431
|
+
"message": "General"
|
|
1432
|
+
},
|
|
1433
|
+
"lighthouse-core/config/default-config.js | bestPracticesTrustSafetyGroupTitle": {
|
|
1434
|
+
"message": "Trust and Safety"
|
|
1435
|
+
},
|
|
1436
|
+
"lighthouse-core/config/default-config.js | bestPracticesUXGroupTitle": {
|
|
1437
|
+
"message": "User Experience"
|
|
1438
|
+
},
|
|
1439
|
+
"lighthouse-core/config/default-config.js | budgetsGroupDescription": {
|
|
1440
|
+
"message": "Performance budgets set standards for the performance of your site."
|
|
1441
|
+
},
|
|
1442
|
+
"lighthouse-core/config/default-config.js | budgetsGroupTitle": {
|
|
1443
|
+
"message": "Budgets"
|
|
1444
|
+
},
|
|
1445
|
+
"lighthouse-core/config/default-config.js | diagnosticsGroupDescription": {
|
|
1446
|
+
"message": "More information about the performance of your application. These numbers don't [directly affect](https://web.dev/performance-scoring/) the Performance score."
|
|
1447
|
+
},
|
|
1448
|
+
"lighthouse-core/config/default-config.js | diagnosticsGroupTitle": {
|
|
1449
|
+
"message": "Diagnostics"
|
|
1450
|
+
},
|
|
1451
|
+
"lighthouse-core/config/default-config.js | firstPaintImprovementsGroupDescription": {
|
|
1452
|
+
"message": "The most critical aspect of performance is how quickly pixels are rendered onscreen. Key metrics: First Contentful Paint, First Meaningful Paint"
|
|
1453
|
+
},
|
|
1454
|
+
"lighthouse-core/config/default-config.js | firstPaintImprovementsGroupTitle": {
|
|
1455
|
+
"message": "First Paint Improvements"
|
|
1456
|
+
},
|
|
1457
|
+
"lighthouse-core/config/default-config.js | loadOpportunitiesGroupDescription": {
|
|
1458
|
+
"message": "These suggestions can help your page load faster. They don't [directly affect](https://web.dev/performance-scoring/) the Performance score."
|
|
1459
|
+
},
|
|
1460
|
+
"lighthouse-core/config/default-config.js | loadOpportunitiesGroupTitle": {
|
|
1461
|
+
"message": "Opportunities"
|
|
1462
|
+
},
|
|
1463
|
+
"lighthouse-core/config/default-config.js | metricGroupTitle": {
|
|
1464
|
+
"message": "Metrics"
|
|
1465
|
+
},
|
|
1466
|
+
"lighthouse-core/config/default-config.js | overallImprovementsGroupDescription": {
|
|
1467
|
+
"message": "Enhance the overall loading experience, so the page is responsive and ready to use as soon as possible. Key metrics: Time to Interactive, Speed Index"
|
|
1468
|
+
},
|
|
1469
|
+
"lighthouse-core/config/default-config.js | overallImprovementsGroupTitle": {
|
|
1470
|
+
"message": "Overall Improvements"
|
|
1471
|
+
},
|
|
1472
|
+
"lighthouse-core/config/default-config.js | performanceCategoryTitle": {
|
|
1473
|
+
"message": "Performance"
|
|
1474
|
+
},
|
|
1475
|
+
"lighthouse-core/config/default-config.js | pwaCategoryDescription": {
|
|
1476
|
+
"message": "These checks validate the aspects of a Progressive Web App. [Learn more](https://developers.google.com/web/progressive-web-apps/checklist)."
|
|
1477
|
+
},
|
|
1478
|
+
"lighthouse-core/config/default-config.js | pwaCategoryManualDescription": {
|
|
1479
|
+
"message": "These checks are required by the baseline [PWA Checklist](https://developers.google.com/web/progressive-web-apps/checklist) but are not automatically checked by Lighthouse. They do not affect your score but it's important that you verify them manually."
|
|
1480
|
+
},
|
|
1481
|
+
"lighthouse-core/config/default-config.js | pwaCategoryTitle": {
|
|
1482
|
+
"message": "Progressive Web App"
|
|
1483
|
+
},
|
|
1484
|
+
"lighthouse-core/config/default-config.js | pwaInstallableGroupTitle": {
|
|
1485
|
+
"message": "Installable"
|
|
1486
|
+
},
|
|
1487
|
+
"lighthouse-core/config/default-config.js | pwaOptimizedGroupTitle": {
|
|
1488
|
+
"message": "PWA Optimized"
|
|
1489
|
+
},
|
|
1490
|
+
"lighthouse-core/config/default-config.js | seoCategoryDescription": {
|
|
1491
|
+
"message": "These checks ensure that your page is optimized for search engine results ranking. There are additional factors Lighthouse does not check that may affect your search ranking. [Learn more](https://support.google.com/webmasters/answer/35769)."
|
|
1492
|
+
},
|
|
1493
|
+
"lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
|
|
1494
|
+
"message": "Run these additional validators on your site to check additional SEO best practices."
|
|
1495
|
+
},
|
|
1496
|
+
"lighthouse-core/config/default-config.js | seoCategoryTitle": {
|
|
1497
|
+
"message": "SEO"
|
|
1498
|
+
},
|
|
1499
|
+
"lighthouse-core/config/default-config.js | seoContentGroupDescription": {
|
|
1500
|
+
"message": "Format your HTML in a way that enables crawlers to better understand your app’s content."
|
|
1501
|
+
},
|
|
1502
|
+
"lighthouse-core/config/default-config.js | seoContentGroupTitle": {
|
|
1503
|
+
"message": "Content Best Practices"
|
|
1504
|
+
},
|
|
1505
|
+
"lighthouse-core/config/default-config.js | seoCrawlingGroupDescription": {
|
|
1506
|
+
"message": "To appear in search results, crawlers need access to your app."
|
|
1507
|
+
},
|
|
1508
|
+
"lighthouse-core/config/default-config.js | seoCrawlingGroupTitle": {
|
|
1509
|
+
"message": "Crawling and Indexing"
|
|
1510
|
+
},
|
|
1511
|
+
"lighthouse-core/config/default-config.js | seoMobileGroupDescription": {
|
|
1512
|
+
"message": "Make sure your pages are mobile friendly so users don’t have to pinch or zoom in order to read the content pages. [Learn more](https://developers.google.com/search/mobile-sites/)."
|
|
1513
|
+
},
|
|
1514
|
+
"lighthouse-core/config/default-config.js | seoMobileGroupTitle": {
|
|
1515
|
+
"message": "Mobile Friendly"
|
|
1516
|
+
},
|
|
1517
|
+
"lighthouse-core/gather/driver.js | warningData": {
|
|
1518
|
+
"message": "{locationCount,plural, =1{There may be stored data affecting loading performance in this location: {locations}. Audit this page in an incognito window to prevent those resources from affecting your scores.}zero{There may be stored data affecting loading performance in these locations: {locations}. Audit this page in an incognito window to prevent those resources from affecting your scores.}two{There may be stored data affecting loading performance in these locations: {locations}. Audit this page in an incognito window to prevent those resources from affecting your scores.}few{There may be stored data affecting loading performance in these locations: {locations}. Audit this page in an incognito window to prevent those resources from affecting your scores.}many{There may be stored data affecting loading performance in these locations: {locations}. Audit this page in an incognito window to prevent those resources from affecting your scores.}other{There may be stored data affecting loading performance in these locations: {locations}. Audit this page in an incognito window to prevent those resources from affecting your scores.}}"
|
|
1519
|
+
},
|
|
1520
|
+
"lighthouse-core/gather/gather-runner.js | warningRedirected": {
|
|
1521
|
+
"message": "The page may not be loading as expected because your test URL ({requested}) was redirected to {final}. Try testing the second URL directly."
|
|
1522
|
+
},
|
|
1523
|
+
"lighthouse-core/gather/gather-runner.js | warningTimeout": {
|
|
1524
|
+
"message": "The page loaded too slowly to finish within the time limit. Results may be incomplete."
|
|
1525
|
+
},
|
|
1526
|
+
"lighthouse-core/lib/i18n/i18n.js | columnCacheTTL": {
|
|
1527
|
+
"message": "Cache TTL"
|
|
1528
|
+
},
|
|
1529
|
+
"lighthouse-core/lib/i18n/i18n.js | columnDuration": {
|
|
1530
|
+
"message": "Duration"
|
|
1531
|
+
},
|
|
1532
|
+
"lighthouse-core/lib/i18n/i18n.js | columnElement": {
|
|
1533
|
+
"message": "Element"
|
|
1534
|
+
},
|
|
1535
|
+
"lighthouse-core/lib/i18n/i18n.js | columnFailingElem": {
|
|
1536
|
+
"message": "Failing Elements"
|
|
1537
|
+
},
|
|
1538
|
+
"lighthouse-core/lib/i18n/i18n.js | columnLocation": {
|
|
1539
|
+
"message": "Location"
|
|
1540
|
+
},
|
|
1541
|
+
"lighthouse-core/lib/i18n/i18n.js | columnName": {
|
|
1542
|
+
"message": "Name"
|
|
1543
|
+
},
|
|
1544
|
+
"lighthouse-core/lib/i18n/i18n.js | columnOverBudget": {
|
|
1545
|
+
"message": "Over Budget"
|
|
1546
|
+
},
|
|
1547
|
+
"lighthouse-core/lib/i18n/i18n.js | columnRequests": {
|
|
1548
|
+
"message": "Requests"
|
|
1549
|
+
},
|
|
1550
|
+
"lighthouse-core/lib/i18n/i18n.js | columnResourceSize": {
|
|
1551
|
+
"message": "Resource Size"
|
|
1552
|
+
},
|
|
1553
|
+
"lighthouse-core/lib/i18n/i18n.js | columnResourceType": {
|
|
1554
|
+
"message": "Resource Type"
|
|
1555
|
+
},
|
|
1556
|
+
"lighthouse-core/lib/i18n/i18n.js | columnSize": {
|
|
1557
|
+
"message": "Size"
|
|
1558
|
+
},
|
|
1559
|
+
"lighthouse-core/lib/i18n/i18n.js | columnSource": {
|
|
1560
|
+
"message": "Source"
|
|
1561
|
+
},
|
|
1562
|
+
"lighthouse-core/lib/i18n/i18n.js | columnStartTime": {
|
|
1563
|
+
"message": "Start Time"
|
|
1564
|
+
},
|
|
1565
|
+
"lighthouse-core/lib/i18n/i18n.js | columnTimeSpent": {
|
|
1566
|
+
"message": "Time Spent"
|
|
1567
|
+
},
|
|
1568
|
+
"lighthouse-core/lib/i18n/i18n.js | columnTransferSize": {
|
|
1569
|
+
"message": "Transfer Size"
|
|
1570
|
+
},
|
|
1571
|
+
"lighthouse-core/lib/i18n/i18n.js | columnURL": {
|
|
1572
|
+
"message": "URL"
|
|
1573
|
+
},
|
|
1574
|
+
"lighthouse-core/lib/i18n/i18n.js | columnWastedBytes": {
|
|
1575
|
+
"message": "Potential Savings"
|
|
1576
|
+
},
|
|
1577
|
+
"lighthouse-core/lib/i18n/i18n.js | columnWastedMs": {
|
|
1578
|
+
"message": "Potential Savings"
|
|
1579
|
+
},
|
|
1580
|
+
"lighthouse-core/lib/i18n/i18n.js | cumulativeLayoutShiftMetric": {
|
|
1581
|
+
"message": "Cumulative Layout Shift"
|
|
1582
|
+
},
|
|
1583
|
+
"lighthouse-core/lib/i18n/i18n.js | displayValueByteSavings": {
|
|
1584
|
+
"message": "Potential savings of {wastedBytes, number, bytes} KiB"
|
|
1585
|
+
},
|
|
1586
|
+
"lighthouse-core/lib/i18n/i18n.js | displayValueElementsFound": {
|
|
1587
|
+
"message": "{nodeCount,plural, =1{1 element found}zero{# elements found}two{# elements found}few{# elements found}many{# elements found}other{# elements found}}"
|
|
1588
|
+
},
|
|
1589
|
+
"lighthouse-core/lib/i18n/i18n.js | displayValueMsSavings": {
|
|
1590
|
+
"message": "Potential savings of {wastedMs, number, milliseconds} ms"
|
|
1591
|
+
},
|
|
1592
|
+
"lighthouse-core/lib/i18n/i18n.js | documentResourceType": {
|
|
1593
|
+
"message": "Document"
|
|
1594
|
+
},
|
|
1595
|
+
"lighthouse-core/lib/i18n/i18n.js | estimatedInputLatencyMetric": {
|
|
1596
|
+
"message": "Estimated Input Latency"
|
|
1597
|
+
},
|
|
1598
|
+
"lighthouse-core/lib/i18n/i18n.js | firstCPUIdleMetric": {
|
|
1599
|
+
"message": "First CPU Idle"
|
|
1600
|
+
},
|
|
1601
|
+
"lighthouse-core/lib/i18n/i18n.js | firstContentfulPaintMetric": {
|
|
1602
|
+
"message": "First Contentful Paint"
|
|
1603
|
+
},
|
|
1604
|
+
"lighthouse-core/lib/i18n/i18n.js | firstMeaningfulPaintMetric": {
|
|
1605
|
+
"message": "First Meaningful Paint"
|
|
1606
|
+
},
|
|
1607
|
+
"lighthouse-core/lib/i18n/i18n.js | fontResourceType": {
|
|
1608
|
+
"message": "Font"
|
|
1609
|
+
},
|
|
1610
|
+
"lighthouse-core/lib/i18n/i18n.js | imageResourceType": {
|
|
1611
|
+
"message": "Image"
|
|
1612
|
+
},
|
|
1613
|
+
"lighthouse-core/lib/i18n/i18n.js | interactiveMetric": {
|
|
1614
|
+
"message": "Time to Interactive"
|
|
1615
|
+
},
|
|
1616
|
+
"lighthouse-core/lib/i18n/i18n.js | largestContentfulPaintMetric": {
|
|
1617
|
+
"message": "Largest Contentful Paint"
|
|
1618
|
+
},
|
|
1619
|
+
"lighthouse-core/lib/i18n/i18n.js | maxPotentialFIDMetric": {
|
|
1620
|
+
"message": "Max Potential First Input Delay"
|
|
1621
|
+
},
|
|
1622
|
+
"lighthouse-core/lib/i18n/i18n.js | mediaResourceType": {
|
|
1623
|
+
"message": "Media"
|
|
1624
|
+
},
|
|
1625
|
+
"lighthouse-core/lib/i18n/i18n.js | ms": {
|
|
1626
|
+
"message": "{timeInMs, number, milliseconds} ms"
|
|
1627
|
+
},
|
|
1628
|
+
"lighthouse-core/lib/i18n/i18n.js | otherResourceType": {
|
|
1629
|
+
"message": "Other"
|
|
1630
|
+
},
|
|
1631
|
+
"lighthouse-core/lib/i18n/i18n.js | scriptResourceType": {
|
|
1632
|
+
"message": "Script"
|
|
1633
|
+
},
|
|
1634
|
+
"lighthouse-core/lib/i18n/i18n.js | seconds": {
|
|
1635
|
+
"message": "{timeInMs, number, seconds} s"
|
|
1636
|
+
},
|
|
1637
|
+
"lighthouse-core/lib/i18n/i18n.js | speedIndexMetric": {
|
|
1638
|
+
"message": "Speed Index"
|
|
1639
|
+
},
|
|
1640
|
+
"lighthouse-core/lib/i18n/i18n.js | stylesheetResourceType": {
|
|
1641
|
+
"message": "Stylesheet"
|
|
1642
|
+
},
|
|
1643
|
+
"lighthouse-core/lib/i18n/i18n.js | thirdPartyResourceType": {
|
|
1644
|
+
"message": "Third-party"
|
|
1645
|
+
},
|
|
1646
|
+
"lighthouse-core/lib/i18n/i18n.js | totalBlockingTimeMetric": {
|
|
1647
|
+
"message": "Total Blocking Time"
|
|
1648
|
+
},
|
|
1649
|
+
"lighthouse-core/lib/i18n/i18n.js | totalResourceType": {
|
|
1650
|
+
"message": "Total"
|
|
1651
|
+
},
|
|
1652
|
+
"lighthouse-core/lib/lh-error.js | badTraceRecording": {
|
|
1653
|
+
"message": "Something went wrong with recording the trace over your page load. Please run Lighthouse again. ({errorCode})"
|
|
1654
|
+
},
|
|
1655
|
+
"lighthouse-core/lib/lh-error.js | criTimeout": {
|
|
1656
|
+
"message": "Timeout waiting for initial Debugger Protocol connection."
|
|
1657
|
+
},
|
|
1658
|
+
"lighthouse-core/lib/lh-error.js | didntCollectScreenshots": {
|
|
1659
|
+
"message": "Chrome didn't collect any screenshots during the page load. Please make sure there is content visible on the page, and then try re-running Lighthouse. ({errorCode})"
|
|
1660
|
+
},
|
|
1661
|
+
"lighthouse-core/lib/lh-error.js | dnsFailure": {
|
|
1662
|
+
"message": "DNS servers could not resolve the provided domain."
|
|
1663
|
+
},
|
|
1664
|
+
"lighthouse-core/lib/lh-error.js | erroredRequiredArtifact": {
|
|
1665
|
+
"message": "Required {artifactName} gatherer encountered an error: {errorMessage}"
|
|
1666
|
+
},
|
|
1667
|
+
"lighthouse-core/lib/lh-error.js | internalChromeError": {
|
|
1668
|
+
"message": "An internal Chrome error occurred. Please restart Chrome and try re-running Lighthouse."
|
|
1669
|
+
},
|
|
1670
|
+
"lighthouse-core/lib/lh-error.js | missingRequiredArtifact": {
|
|
1671
|
+
"message": "Required {artifactName} gatherer did not run."
|
|
1672
|
+
},
|
|
1673
|
+
"lighthouse-core/lib/lh-error.js | notHtml": {
|
|
1674
|
+
"message": "The page provided is not HTML (served as MIME type {mimeType})."
|
|
1675
|
+
},
|
|
1676
|
+
"lighthouse-core/lib/lh-error.js | oldChromeDoesNotSupportFeature": {
|
|
1677
|
+
"message": "This version of Chrome is too old to support '{featureName}'. Use a newer version to see full results."
|
|
1678
|
+
},
|
|
1679
|
+
"lighthouse-core/lib/lh-error.js | pageLoadFailed": {
|
|
1680
|
+
"message": "Lighthouse was unable to reliably load the page you requested. Make sure you are testing the correct URL and that the server is properly responding to all requests."
|
|
1681
|
+
},
|
|
1682
|
+
"lighthouse-core/lib/lh-error.js | pageLoadFailedHung": {
|
|
1683
|
+
"message": "Lighthouse was unable to reliably load the URL you requested because the page stopped responding."
|
|
1684
|
+
},
|
|
1685
|
+
"lighthouse-core/lib/lh-error.js | pageLoadFailedInsecure": {
|
|
1686
|
+
"message": "The URL you have provided does not have a valid security certificate. {securityMessages}"
|
|
1687
|
+
},
|
|
1688
|
+
"lighthouse-core/lib/lh-error.js | pageLoadFailedInterstitial": {
|
|
1689
|
+
"message": "Chrome prevented page load with an interstitial. Make sure you are testing the correct URL and that the server is properly responding to all requests."
|
|
1690
|
+
},
|
|
1691
|
+
"lighthouse-core/lib/lh-error.js | pageLoadFailedWithDetails": {
|
|
1692
|
+
"message": "Lighthouse was unable to reliably load the page you requested. Make sure you are testing the correct URL and that the server is properly responding to all requests. (Details: {errorDetails})"
|
|
1693
|
+
},
|
|
1694
|
+
"lighthouse-core/lib/lh-error.js | pageLoadFailedWithStatusCode": {
|
|
1695
|
+
"message": "Lighthouse was unable to reliably load the page you requested. Make sure you are testing the correct URL and that the server is properly responding to all requests. (Status code: {statusCode})"
|
|
1696
|
+
},
|
|
1697
|
+
"lighthouse-core/lib/lh-error.js | pageLoadTookTooLong": {
|
|
1698
|
+
"message": "Your page took too long to load. Please follow the opportunities in the report to reduce your page load time, and then try re-running Lighthouse. ({errorCode})"
|
|
1699
|
+
},
|
|
1700
|
+
"lighthouse-core/lib/lh-error.js | protocolTimeout": {
|
|
1701
|
+
"message": "Waiting for DevTools protocol response has exceeded the allotted time. (Method: {protocolMethod})"
|
|
1702
|
+
},
|
|
1703
|
+
"lighthouse-core/lib/lh-error.js | requestContentTimeout": {
|
|
1704
|
+
"message": "Fetching resource content has exceeded the allotted time"
|
|
1705
|
+
},
|
|
1706
|
+
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
1707
|
+
"message": "The URL you have provided appears to be invalid."
|
|
1708
|
+
},
|
|
1709
|
+
"lighthouse-core/report/html/renderer/util.js | auditGroupExpandTooltip": {
|
|
1710
|
+
"message": "Show audits"
|
|
1711
|
+
},
|
|
1712
|
+
"lighthouse-core/report/html/renderer/util.js | calculatorLink": {
|
|
1713
|
+
"message": "See calculator."
|
|
1714
|
+
},
|
|
1715
|
+
"lighthouse-core/report/html/renderer/util.js | crcInitialNavigation": {
|
|
1716
|
+
"message": "Initial Navigation"
|
|
1717
|
+
},
|
|
1718
|
+
"lighthouse-core/report/html/renderer/util.js | crcLongestDurationLabel": {
|
|
1719
|
+
"message": "Maximum critical path latency:"
|
|
1720
|
+
},
|
|
1721
|
+
"lighthouse-core/report/html/renderer/util.js | dropdownCopyJSON": {
|
|
1722
|
+
"message": "Copy JSON"
|
|
1723
|
+
},
|
|
1724
|
+
"lighthouse-core/report/html/renderer/util.js | dropdownDarkTheme": {
|
|
1725
|
+
"message": "Toggle Dark Theme"
|
|
1726
|
+
},
|
|
1727
|
+
"lighthouse-core/report/html/renderer/util.js | dropdownPrintExpanded": {
|
|
1728
|
+
"message": "Print Expanded"
|
|
1729
|
+
},
|
|
1730
|
+
"lighthouse-core/report/html/renderer/util.js | dropdownPrintSummary": {
|
|
1731
|
+
"message": "Print Summary"
|
|
1732
|
+
},
|
|
1733
|
+
"lighthouse-core/report/html/renderer/util.js | dropdownSaveGist": {
|
|
1734
|
+
"message": "Save as Gist"
|
|
1735
|
+
},
|
|
1736
|
+
"lighthouse-core/report/html/renderer/util.js | dropdownSaveHTML": {
|
|
1737
|
+
"message": "Save as HTML"
|
|
1738
|
+
},
|
|
1739
|
+
"lighthouse-core/report/html/renderer/util.js | dropdownSaveJSON": {
|
|
1740
|
+
"message": "Save as JSON"
|
|
1741
|
+
},
|
|
1742
|
+
"lighthouse-core/report/html/renderer/util.js | dropdownViewer": {
|
|
1743
|
+
"message": "Open in Viewer"
|
|
1744
|
+
},
|
|
1745
|
+
"lighthouse-core/report/html/renderer/util.js | errorLabel": {
|
|
1746
|
+
"message": "Error!"
|
|
1747
|
+
},
|
|
1748
|
+
"lighthouse-core/report/html/renderer/util.js | errorMissingAuditInfo": {
|
|
1749
|
+
"message": "Report error: no audit information"
|
|
1750
|
+
},
|
|
1751
|
+
"lighthouse-core/report/html/renderer/util.js | footerIssue": {
|
|
1752
|
+
"message": "File an issue"
|
|
1753
|
+
},
|
|
1754
|
+
"lighthouse-core/report/html/renderer/util.js | labDataTitle": {
|
|
1755
|
+
"message": "Lab Data"
|
|
1756
|
+
},
|
|
1757
|
+
"lighthouse-core/report/html/renderer/util.js | lsPerformanceCategoryDescription": {
|
|
1758
|
+
"message": "[Lighthouse](https://developers.google.com/web/tools/lighthouse/) analysis of the current page on an emulated mobile network. Values are estimated and may vary."
|
|
1759
|
+
},
|
|
1760
|
+
"lighthouse-core/report/html/renderer/util.js | manualAuditsGroupTitle": {
|
|
1761
|
+
"message": "Additional items to manually check"
|
|
1762
|
+
},
|
|
1763
|
+
"lighthouse-core/report/html/renderer/util.js | notApplicableAuditsGroupTitle": {
|
|
1764
|
+
"message": "Not applicable"
|
|
1765
|
+
},
|
|
1766
|
+
"lighthouse-core/report/html/renderer/util.js | opportunityResourceColumnLabel": {
|
|
1767
|
+
"message": "Opportunity"
|
|
1768
|
+
},
|
|
1769
|
+
"lighthouse-core/report/html/renderer/util.js | opportunitySavingsColumnLabel": {
|
|
1770
|
+
"message": "Estimated Savings"
|
|
1771
|
+
},
|
|
1772
|
+
"lighthouse-core/report/html/renderer/util.js | passedAuditsGroupTitle": {
|
|
1773
|
+
"message": "Passed audits"
|
|
1774
|
+
},
|
|
1775
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeDesktopEmulation": {
|
|
1776
|
+
"message": "Emulated Desktop"
|
|
1777
|
+
},
|
|
1778
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeMobileEmulation": {
|
|
1779
|
+
"message": "Emulated Moto G4"
|
|
1780
|
+
},
|
|
1781
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeNoEmulation": {
|
|
1782
|
+
"message": "No emulation"
|
|
1783
|
+
},
|
|
1784
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeSettingsAxeVersion": {
|
|
1785
|
+
"message": "Axe version"
|
|
1786
|
+
},
|
|
1787
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeSettingsBenchmark": {
|
|
1788
|
+
"message": "CPU/Memory Power"
|
|
1789
|
+
},
|
|
1790
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeSettingsCPUThrottling": {
|
|
1791
|
+
"message": "CPU throttling"
|
|
1792
|
+
},
|
|
1793
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeSettingsChannel": {
|
|
1794
|
+
"message": "Channel"
|
|
1795
|
+
},
|
|
1796
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeSettingsDevice": {
|
|
1797
|
+
"message": "Device"
|
|
1798
|
+
},
|
|
1799
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeSettingsFetchTime": {
|
|
1800
|
+
"message": "Fetch Time"
|
|
1801
|
+
},
|
|
1802
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeSettingsNetworkThrottling": {
|
|
1803
|
+
"message": "Network throttling"
|
|
1804
|
+
},
|
|
1805
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeSettingsTitle": {
|
|
1806
|
+
"message": "Runtime Settings"
|
|
1807
|
+
},
|
|
1808
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeSettingsUA": {
|
|
1809
|
+
"message": "User agent (host)"
|
|
1810
|
+
},
|
|
1811
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeSettingsUANetwork": {
|
|
1812
|
+
"message": "User agent (network)"
|
|
1813
|
+
},
|
|
1814
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeSettingsUrl": {
|
|
1815
|
+
"message": "URL"
|
|
1816
|
+
},
|
|
1817
|
+
"lighthouse-core/report/html/renderer/util.js | runtimeUnknown": {
|
|
1818
|
+
"message": "Unknown"
|
|
1819
|
+
},
|
|
1820
|
+
"lighthouse-core/report/html/renderer/util.js | snippetCollapseButtonLabel": {
|
|
1821
|
+
"message": "Collapse snippet"
|
|
1822
|
+
},
|
|
1823
|
+
"lighthouse-core/report/html/renderer/util.js | snippetExpandButtonLabel": {
|
|
1824
|
+
"message": "Expand snippet"
|
|
1825
|
+
},
|
|
1826
|
+
"lighthouse-core/report/html/renderer/util.js | thirdPartyResourcesLabel": {
|
|
1827
|
+
"message": "Show 3rd-party resources"
|
|
1828
|
+
},
|
|
1829
|
+
"lighthouse-core/report/html/renderer/util.js | throttlingProvided": {
|
|
1830
|
+
"message": "Provided by environment"
|
|
1831
|
+
},
|
|
1832
|
+
"lighthouse-core/report/html/renderer/util.js | toplevelWarningsMessage": {
|
|
1833
|
+
"message": "There were issues affecting this run of Lighthouse:"
|
|
1834
|
+
},
|
|
1835
|
+
"lighthouse-core/report/html/renderer/util.js | varianceDisclaimer": {
|
|
1836
|
+
"message": "Values are estimated and may vary. The [performance score is calculated](https://web.dev/performance-scoring/) directly from these metrics."
|
|
1837
|
+
},
|
|
1838
|
+
"lighthouse-core/report/html/renderer/util.js | warningAuditsGroupTitle": {
|
|
1839
|
+
"message": "Passed audits but with warnings"
|
|
1840
|
+
},
|
|
1841
|
+
"lighthouse-core/report/html/renderer/util.js | warningHeader": {
|
|
1842
|
+
"message": "Warnings: "
|
|
1843
|
+
},
|
|
1844
|
+
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
1845
|
+
"message": "For animated content, use [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) to minimize CPU usage when the content is offscreen."
|
|
1846
|
+
},
|
|
1847
|
+
"node_modules/lighthouse-stack-packs/packs/amp.js | offscreen-images": {
|
|
1848
|
+
"message": "Ensure that you are using [`amp-img`](https://amp.dev/documentation/components/amp-img/?format=websites) for images to automatically lazy-load. [Learn more](https://amp.dev/documentation/guides-and-tutorials/develop/media_iframes_3p/?format=websites#images)."
|
|
1849
|
+
},
|
|
1850
|
+
"node_modules/lighthouse-stack-packs/packs/amp.js | render-blocking-resources": {
|
|
1851
|
+
"message": "Use tools such as [AMP Optimizer](https://github.com/ampproject/amp-toolbox/tree/master/packages/optimizer) to [server-side render AMP layouts](https://amp.dev/documentation/guides-and-tutorials/optimize-and-measure/server-side-rendering/)."
|
|
1852
|
+
},
|
|
1853
|
+
"node_modules/lighthouse-stack-packs/packs/amp.js | unminified-css": {
|
|
1854
|
+
"message": "Refer to the [AMP documentation](https://amp.dev/documentation/guides-and-tutorials/develop/style_and_layout/style_pages/) to ensure all styles are supported."
|
|
1855
|
+
},
|
|
1856
|
+
"node_modules/lighthouse-stack-packs/packs/amp.js | uses-responsive-images": {
|
|
1857
|
+
"message": "The [`amp-img`](https://amp.dev/documentation/components/amp-img/?format=websites) component supports the [`srcset`](https://web.dev/use-srcset-to-automatically-choose-the-right-image/) attribute to specify which image assets to use based on the screen size. [Learn more](https://amp.dev/documentation/guides-and-tutorials/develop/style_and_layout/art_direction/)."
|
|
1858
|
+
},
|
|
1859
|
+
"node_modules/lighthouse-stack-packs/packs/amp.js | uses-webp-images": {
|
|
1860
|
+
"message": "Consider displaying all [`amp-img`](https://amp.dev/documentation/components/amp-img/?format=websites) components in WebP formats while specifying an appropriate fallback for other browsers. [Learn more](https://amp.dev/documentation/components/amp-img/#example:-specifying-a-fallback-image)."
|
|
1861
|
+
},
|
|
1862
|
+
"node_modules/lighthouse-stack-packs/packs/angular.js | dom-size": {
|
|
1863
|
+
"message": "Consider virtual scrolling with the Component Dev Kit (CDK) if very large lists are being rendered. [Learn more](https://web.dev/virtualize-lists-with-angular-cdk/)."
|
|
1864
|
+
},
|
|
1865
|
+
"node_modules/lighthouse-stack-packs/packs/angular.js | total-byte-weight": {
|
|
1866
|
+
"message": "Apply [route-level code splitting](https://web.dev/route-level-code-splitting-in-angular/) to minimize the size of your JavaScript bundles. Also, consider precaching assets with the [Angular service worker](https://web.dev/precaching-with-the-angular-service-worker/)."
|
|
1867
|
+
},
|
|
1868
|
+
"node_modules/lighthouse-stack-packs/packs/angular.js | unminified-warning": {
|
|
1869
|
+
"message": "If you are using Angular CLI, ensure that builds are generated in production mode. [Learn more](https://angular.io/guide/deployment#enable-runtime-production-mode)."
|
|
1870
|
+
},
|
|
1871
|
+
"node_modules/lighthouse-stack-packs/packs/angular.js | unused-javascript": {
|
|
1872
|
+
"message": "If you are using Angular CLI, include source maps in your production build to inspect your bundles. [Learn more](https://angular.io/guide/deployment#inspect-the-bundles)."
|
|
1873
|
+
},
|
|
1874
|
+
"node_modules/lighthouse-stack-packs/packs/angular.js | uses-rel-preload": {
|
|
1875
|
+
"message": "Preload routes ahead of time to speed up navigation. [Learn more](https://web.dev/route-preloading-in-angular/)."
|
|
1876
|
+
},
|
|
1877
|
+
"node_modules/lighthouse-stack-packs/packs/angular.js | uses-responsive-images": {
|
|
1878
|
+
"message": "Consider using the `BreakpointObserver` utility in the Component Dev Kit (CDK) to manage image breakpoints. [Learn more](https://material.angular.io/cdk/layout/overview)."
|
|
1879
|
+
},
|
|
1880
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | efficient-animated-content": {
|
|
1881
|
+
"message": "Consider uploading your GIF to a service which will make it available to embed as an HTML5 video."
|
|
1882
|
+
},
|
|
1883
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | font-display": {
|
|
1884
|
+
"message": "Specify `@font-display` when defining custom fonts in your theme."
|
|
1885
|
+
},
|
|
1886
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | offscreen-images": {
|
|
1887
|
+
"message": "Install [a Drupal module](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=im_vid_3%3A67&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=%22lazy+load%22&solrsort=iss_project_release_usage+desc&op=Search) that can lazy load images. Such modules provide the ability to defer any offscreen images to improve performance."
|
|
1888
|
+
},
|
|
1889
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | render-blocking-resources": {
|
|
1890
|
+
"message": "Consider using a module to inline critical CSS and JavaScript, or potentially load assets asynchronously via JavaScript such as the [Advanced CSS/JS Aggregation](https://www.drupal.org/project/advagg) module. Beware that optimizations provided by this module may break your site, so you will likely need to make code changes."
|
|
1891
|
+
},
|
|
1892
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | time-to-first-byte": {
|
|
1893
|
+
"message": "Themes, modules, and server specifications all contribute to server response time. Consider finding a more optimized theme, carefully selecting an optimization module, and/or upgrading your server. Your hosting servers should make use of PHP opcode caching, memory-caching to reduce database query times such as Redis or Memcached, as well as optimized application logic to prepare pages faster."
|
|
1894
|
+
},
|
|
1895
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | total-byte-weight": {
|
|
1896
|
+
"message": "Consider using [Responsive Image Styles](https://www.drupal.org/docs/8/mobile-guide/responsive-images-in-drupal-8) to reduce the size of images loaded on your page. If you are using Views to show multiple content items on a page, consider implementing pagination to limit the number of content items shown on a given page."
|
|
1897
|
+
},
|
|
1898
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-css": {
|
|
1899
|
+
"message": "Ensure you have enabled \"Aggregate CSS files\" in the \"Administration » Configuration » Development\" page. You can also configure more advanced aggregation options through [additional modules](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=im_vid_3%3A123&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=css+aggregation&solrsort=iss_project_release_usage+desc&op=Search) to speed up your site by concatenating, minifying, and compressing your CSS styles."
|
|
1900
|
+
},
|
|
1901
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-javascript": {
|
|
1902
|
+
"message": "Ensure you have enabled \"Aggregate JavaScript files\" in the \"Administration » Configuration » Development\" page. You can also configure more advanced aggregation options through [additional modules](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=im_vid_3%3A123&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=javascript+aggregation&solrsort=iss_project_release_usage+desc&op=Search) to speed up your site by concatenating, minifying, and compressing your JavaScript assets."
|
|
1903
|
+
},
|
|
1904
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | unused-css-rules": {
|
|
1905
|
+
"message": "Consider removing unused CSS rules and only attach the needed Drupal libraries to the relevant page or component in a page. See the [Drupal documentation link](https://www.drupal.org/docs/8/creating-custom-modules/adding-stylesheets-css-and-javascript-js-to-a-drupal-8-module#library) for details. To identify attached libraries that are adding extraneous CSS, try running [code coverage](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) in Chrome DevTools. You can identify the theme/module responsible from the URL of the stylesheet when CSS aggregation is disabled in your Drupal site. Look out for themes/modules that have many stylesheets in the list which have a lot of red in code coverage. A theme/module should only enqueue a stylesheet if it is actually used on the page."
|
|
1906
|
+
},
|
|
1907
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | unused-javascript": {
|
|
1908
|
+
"message": "Consider removing unused JavaScript assets and only attach the needed Drupal libraries to the relevant page or component in a page. See the [Drupal documentation link](https://www.drupal.org/docs/8/creating-custom-modules/adding-stylesheets-css-and-javascript-js-to-a-drupal-8-module#library) for details. To identify attached libraries that are adding extraneous JavaScript, try running [code coverage](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) in Chrome DevTools. You can identify the theme/module responsible from the URL of the script when JavaScript aggregation is disabled in your Drupal site. Look out for themes/modules that have many scripts in the list which have a lot of red in code coverage. A theme/module should only enqueue a script if it is actually used on the page."
|
|
1909
|
+
},
|
|
1910
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | uses-long-cache-ttl": {
|
|
1911
|
+
"message": "Set the \"Browser and proxy cache maximum age\" in the \"Administration » Configuration » Development\" page. Read about [Drupal cache and optimizing for performance](https://www.drupal.org/docs/7/managing-site-performance-and-scalability/caching-to-improve-performance/caching-overview#s-drupal-performance-resources)."
|
|
1912
|
+
},
|
|
1913
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | uses-optimized-images": {
|
|
1914
|
+
"message": "Consider using [a module](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=im_vid_3%3A123&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=optimize+images&solrsort=iss_project_release_usage+desc&op=Search) that automatically optimizes and reduces the size of images uploaded through the site while retaining quality. Also, ensure you are using the native [Responsive Image Styles](https://www.drupal.org/docs/8/mobile-guide/responsive-images-in-drupal-8) provided from Drupal (available in Drupal 8 and above) for all images rendered on the site."
|
|
1915
|
+
},
|
|
1916
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | uses-rel-preconnect": {
|
|
1917
|
+
"message": "Preconnect or dns-prefetch resource hints can be added by installing and configuring [a module](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=dns-prefetch&solrsort=iss_project_release_usage+desc&op=Search) that provides facilities for user agent resource hints."
|
|
1918
|
+
},
|
|
1919
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | uses-responsive-images": {
|
|
1920
|
+
"message": "Ensure that you are using the native [Responsive Image Styles](https://www.drupal.org/docs/8/mobile-guide/responsive-images-in-drupal-8) provided from Drupal (available in Drupal 8 and above). Use the Responsive Image Styles when rendering image fields through view modes, views, or images uploaded through the WYSIWYG editor."
|
|
1921
|
+
},
|
|
1922
|
+
"node_modules/lighthouse-stack-packs/packs/drupal.js | uses-webp-images": {
|
|
1923
|
+
"message": "Consider installing and configuring [a module to leverage WebP image formats](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=webp&solrsort=iss_project_release_usage+desc&op=Search) in your site. Such modules automatically generate a WebP version of your uploaded images to optimize loading times."
|
|
1924
|
+
},
|
|
1925
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | efficient-animated-content": {
|
|
1926
|
+
"message": "Consider uploading your GIF to a service which will make it available to embed as an HTML5 video."
|
|
1927
|
+
},
|
|
1928
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | offscreen-images": {
|
|
1929
|
+
"message": "Install a [lazy-load Joomla plugin](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=lazy%20loading) that provides the ability to defer any offscreen images, or switch to a template that provides that functionality. Starting with Joomla 4.0, a dedicated lazy-loading plugin can be enabled by using the \"Content - Lazy Loading Images\" plugin. Also consider using [an AMP plugin](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=amp)."
|
|
1930
|
+
},
|
|
1931
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | render-blocking-resources": {
|
|
1932
|
+
"message": "There are a number of Joomla plugins that can help you [inline critical assets](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=performance) or [defer less important resources](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=performance). Beware that optimizations provided by these plugins may break features of your templates or plugins, so you will need to test these thoroughly."
|
|
1933
|
+
},
|
|
1934
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | server-response-time": {
|
|
1935
|
+
"message": "Templates, extensions, and server specifications all contribute to server response time. Consider finding a more optimized template, carefully selecting an optimization extension, and/or upgrading your server."
|
|
1936
|
+
},
|
|
1937
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | total-byte-weight": {
|
|
1938
|
+
"message": "Consider showing excerpts in your article categories (e.g. via the read more link), reducing the number of articles shown on a given page, breaking your long posts into multiple pages, or using a plugin to lazy-load comments."
|
|
1939
|
+
},
|
|
1940
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | unminified-css": {
|
|
1941
|
+
"message": "A number of [Joomla extensions](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=performance) can speed up your site by concatenating, minifying, and compressing your css styles. There are also templates that provide this functionality."
|
|
1942
|
+
},
|
|
1943
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | unminified-javascript": {
|
|
1944
|
+
"message": "A number of [Joomla extensions](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=performance) can speed up your site by concatenating, minifying, and compressing your scripts. There are also templates that provide this functionality."
|
|
1945
|
+
},
|
|
1946
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | unused-css-rules": {
|
|
1947
|
+
"message": "Consider reducing, or switching, the number of [Joomla extensions](https://extensions.joomla.org/) loading unused CSS in your page. To identify extensions that are adding extraneous CSS, try running [code coverage](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) in Chrome DevTools. You can identify the theme/plugin responsible from the URL of the stylesheet. Look out for plugins that have many stylesheets in the list which have a lot of red in code coverage. A plugin should only enqueue a stylesheet if it is actually used on the page."
|
|
1948
|
+
},
|
|
1949
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | unused-javascript": {
|
|
1950
|
+
"message": "Consider reducing, or switching, the number of [Joomla extensions](https://extensions.joomla.org/) loading unused JavaScript in your page. To identify plugins that are adding extraneous JS, try running [code coverage](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) in Chrome DevTools. You can identify the extension responsible from the URL of the script. Look out for extensions that have many scripts in the list which have a lot of red in code coverage. An extension should only enqueue a script if it is actually used on the page."
|
|
1951
|
+
},
|
|
1952
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | uses-long-cache-ttl": {
|
|
1953
|
+
"message": "Read about [Browser Caching in Joomla](https://docs.joomla.org/Cache)."
|
|
1954
|
+
},
|
|
1955
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | uses-optimized-images": {
|
|
1956
|
+
"message": "Consider using an [image optimization plugin](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=performance) that compresses your images while retaining quality."
|
|
1957
|
+
},
|
|
1958
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | uses-responsive-images": {
|
|
1959
|
+
"message": "Consider using a [responsive images plugin](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=responsive%20images) to use responsive images in your content."
|
|
1960
|
+
},
|
|
1961
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | uses-text-compression": {
|
|
1962
|
+
"message": "You can enable text compression by enabling Gzip Page Compression in Joomla (System > Global configuration > Server)."
|
|
1963
|
+
},
|
|
1964
|
+
"node_modules/lighthouse-stack-packs/packs/joomla.js | uses-webp-images": {
|
|
1965
|
+
"message": "Consider using a [plugin](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=webp) or service that will automatically convert your uploaded images to the optimal formats."
|
|
1966
|
+
},
|
|
1967
|
+
"node_modules/lighthouse-stack-packs/packs/magento.js | critical-request-chains": {
|
|
1968
|
+
"message": "If you are not bundling your JavaScript assets, consider using [baler](https://github.com/magento/baler)."
|
|
1969
|
+
},
|
|
1970
|
+
"node_modules/lighthouse-stack-packs/packs/magento.js | disable-bundling": {
|
|
1971
|
+
"message": "Disable Magento's built-in [JavaScript bundling and minification](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/themes/js-bundling.html), and consider using [baler](https://github.com/magento/baler/) instead."
|
|
1972
|
+
},
|
|
1973
|
+
"node_modules/lighthouse-stack-packs/packs/magento.js | font-display": {
|
|
1974
|
+
"message": "Specify `@font-display` when [defining custom fonts](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/css-topics/using-fonts.html)."
|
|
1975
|
+
},
|
|
1976
|
+
"node_modules/lighthouse-stack-packs/packs/magento.js | offscreen-images": {
|
|
1977
|
+
"message": "Consider modifying your product and catalog templates to make use of the web platform's [lazy loading](https://web.dev/native-lazy-loading) feature."
|
|
1978
|
+
},
|
|
1979
|
+
"node_modules/lighthouse-stack-packs/packs/magento.js | time-to-first-byte": {
|
|
1980
|
+
"message": "Use Magento's [Varnish integration](https://devdocs.magento.com/guides/v2.3/config-guide/varnish/config-varnish.html)."
|
|
1981
|
+
},
|
|
1982
|
+
"node_modules/lighthouse-stack-packs/packs/magento.js | unminified-css": {
|
|
1983
|
+
"message": "Enable the \"Minify CSS Files\" option in your store's Developer settings. [Learn more](https://devdocs.magento.com/guides/v2.3/performance-best-practices/configuration.html?itm_source=devdocs&itm_medium=search_page&itm_campaign=federated_search&itm_term=minify%20css%20files)."
|
|
1984
|
+
},
|
|
1985
|
+
"node_modules/lighthouse-stack-packs/packs/magento.js | unminified-javascript": {
|
|
1986
|
+
"message": "Use [Terser](https://www.npmjs.com/package/terser) to minify all JavaScript assets from static content deployment, and disable the built-in minification feature."
|
|
1987
|
+
},
|
|
1988
|
+
"node_modules/lighthouse-stack-packs/packs/magento.js | unused-javascript": {
|
|
1989
|
+
"message": "Disable Magento's built-in [JavaScript bundling](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/themes/js-bundling.html)."
|
|
1990
|
+
},
|
|
1991
|
+
"node_modules/lighthouse-stack-packs/packs/magento.js | uses-optimized-images": {
|
|
1992
|
+
"message": "Consider searching the [Magento Marketplace](https://marketplace.magento.com/catalogsearch/result/?q=optimize%20image) for a variety of third party extensions to optimize images."
|
|
1993
|
+
},
|
|
1994
|
+
"node_modules/lighthouse-stack-packs/packs/magento.js | uses-rel-preconnect": {
|
|
1995
|
+
"message": "Preconnect or dns-prefetch resource hints can be added by [modifying a themes's layout](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
|
|
1996
|
+
},
|
|
1997
|
+
"node_modules/lighthouse-stack-packs/packs/magento.js | uses-rel-preload": {
|
|
1998
|
+
"message": "`<link rel=preload>` tags can be added by [modifying a themes's layout](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
|
|
1999
|
+
},
|
|
2000
|
+
"node_modules/lighthouse-stack-packs/packs/magento.js | uses-webp-images": {
|
|
2001
|
+
"message": "Consider searching the [Magento Marketplace](https://marketplace.magento.com/catalogsearch/result/?q=webp) for a variety of third-party extensions to leverage newer image formats."
|
|
2002
|
+
},
|
|
2003
|
+
"node_modules/lighthouse-stack-packs/packs/react.js | dom-size": {
|
|
2004
|
+
"message": "Consider using a “windowing” library like `react-window` to minimize the number of DOM nodes created if you are rendering many repeated elements on the page. [Learn more](https://web.dev/virtualize-long-lists-react-window/). Also, minimize unnecessary re-renders using [`shouldComponentUpdate`](https://reactjs.org/docs/optimizing-performance.html#shouldcomponentupdate-in-action), [`PureComponent`](https://reactjs.org/docs/react-api.html#reactpurecomponent), or [`React.memo`](https://reactjs.org/docs/react-api.html#reactmemo) and [skip effects](https://reactjs.org/docs/hooks-effect.html#tip-optimizing-performance-by-skipping-effects) only until certain dependencies have changed if you are using the `Effect` hook to improve runtime performance."
|
|
2005
|
+
},
|
|
2006
|
+
"node_modules/lighthouse-stack-packs/packs/react.js | redirects": {
|
|
2007
|
+
"message": "If you are using React Router, minimize usage of the `<Redirect>` component for [route navigations](https://reacttraining.com/react-router/web/api/Redirect)."
|
|
2008
|
+
},
|
|
2009
|
+
"node_modules/lighthouse-stack-packs/packs/react.js | time-to-first-byte": {
|
|
2010
|
+
"message": "If you are server-side rendering any React components, consider using `renderToNodeStream()` or `renderToStaticNodeStream()` to allow the client to receive and hydrate different parts of the markup instead of all at once. [Learn more](https://reactjs.org/docs/react-dom-server.html#rendertonodestream)."
|
|
2011
|
+
},
|
|
2012
|
+
"node_modules/lighthouse-stack-packs/packs/react.js | unminified-css": {
|
|
2013
|
+
"message": "If your build system minifies CSS files automatically, ensure that you are deploying the production build of your application. You can check this with the React Developer Tools extension. [Learn more](https://reactjs.org/docs/optimizing-performance.html#use-the-production-build)."
|
|
2014
|
+
},
|
|
2015
|
+
"node_modules/lighthouse-stack-packs/packs/react.js | unminified-javascript": {
|
|
2016
|
+
"message": "If your build system minifies JS files automatically, ensure that you are deploying the production build of your application. You can check this with the React Developer Tools extension. [Learn more](https://reactjs.org/docs/optimizing-performance.html#use-the-production-build)."
|
|
2017
|
+
},
|
|
2018
|
+
"node_modules/lighthouse-stack-packs/packs/react.js | unused-javascript": {
|
|
2019
|
+
"message": "If you are not server-side rendering, [split your JavaScript bundles](https://web.dev/code-splitting-suspense/) with `React.lazy()`. Otherwise, code-split using a third-party library such as [loadable-components](https://www.smooth-code.com/open-source/loadable-components/docs/getting-started/)."
|
|
2020
|
+
},
|
|
2021
|
+
"node_modules/lighthouse-stack-packs/packs/react.js | user-timings": {
|
|
2022
|
+
"message": "Use the React DevTools Profiler, which makes use of the Profiler API, to measure the rendering performance of your components. [Learn more.](https://reactjs.org/blog/2018/09/10/introducing-the-react-profiler.html)"
|
|
2023
|
+
},
|
|
2024
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | efficient-animated-content": {
|
|
2025
|
+
"message": "Consider uploading your GIF to a service which will make it available to embed as an HTML5 video."
|
|
2026
|
+
},
|
|
2027
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | offscreen-images": {
|
|
2028
|
+
"message": "Install a [lazy-load WordPress plugin](https://wordpress.org/plugins/search/lazy+load/) that provides the ability to defer any offscreen images, or switch to a theme that provides that functionality. Also consider using [the AMP plugin](https://wordpress.org/plugins/amp/)."
|
|
2029
|
+
},
|
|
2030
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | render-blocking-resources": {
|
|
2031
|
+
"message": "There are a number of WordPress plugins that can help you [inline critical assets](https://wordpress.org/plugins/search/critical+css/) or [defer less important resources](https://wordpress.org/plugins/search/defer+css+javascript/). Beware that optimizations provided by these plugins may break features of your theme or plugins, so you will likely need to make code changes."
|
|
2032
|
+
},
|
|
2033
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | time-to-first-byte": {
|
|
2034
|
+
"message": "Themes, plugins, and server specifications all contribute to server response time. Consider finding a more optimized theme, carefully selecting an optimization plugin, and/or upgrading your server."
|
|
2035
|
+
},
|
|
2036
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | total-byte-weight": {
|
|
2037
|
+
"message": "Consider showing excerpts in your post lists (e.g. via the more tag), reducing the number of posts shown on a given page, breaking your long posts into multiple pages, or using a plugin to lazy-load comments."
|
|
2038
|
+
},
|
|
2039
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | unminified-css": {
|
|
2040
|
+
"message": "A number of [WordPress plugins](https://wordpress.org/plugins/search/minify+css/) can speed up your site by concatenating, minifying, and compressing your styles. You may also want to use a build process to do this minification up-front if possible."
|
|
2041
|
+
},
|
|
2042
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | unminified-javascript": {
|
|
2043
|
+
"message": "A number of [WordPress plugins](https://wordpress.org/plugins/search/minify+javascript/) can speed up your site by concatenating, minifying, and compressing your scripts. You may also want to use a build process to do this minification up front if possible."
|
|
2044
|
+
},
|
|
2045
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | unused-css-rules": {
|
|
2046
|
+
"message": "Consider reducing, or switching, the number of [WordPress plugins](https://wordpress.org/plugins/) loading unused CSS in your page. To identify plugins that are adding extraneous CSS, try running [code coverage](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) in Chrome DevTools. You can identify the theme/plugin responsible from the URL of the stylesheet. Look out for plugins that have many stylesheets in the list which have a lot of red in code coverage. A plugin should only enqueue a stylesheet if it is actually used on the page."
|
|
2047
|
+
},
|
|
2048
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | unused-javascript": {
|
|
2049
|
+
"message": "Consider reducing, or switching, the number of [WordPress plugins](https://wordpress.org/plugins/) loading unused JavaScript in your page. To identify plugins that are adding extraneous JS, try running [code coverage](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) in Chrome DevTools. You can identify the theme/plugin responsible from the URL of the script. Look out for plugins that have many scripts in the list which have a lot of red in code coverage. A plugin should only enqueue a script if it is actually used on the page."
|
|
2050
|
+
},
|
|
2051
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-long-cache-ttl": {
|
|
2052
|
+
"message": "Read about [Browser Caching in WordPress](https://wordpress.org/support/article/optimization/#browser-caching)."
|
|
2053
|
+
},
|
|
2054
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-optimized-images": {
|
|
2055
|
+
"message": "Consider using an [image optimization WordPress plugin](https://wordpress.org/plugins/search/optimize+images/) that compresses your images while retaining quality."
|
|
2056
|
+
},
|
|
2057
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-responsive-images": {
|
|
2058
|
+
"message": "Upload images directly through the [media library](https://wordpress.org/support/article/media-library-screen/) to ensure that the required image sizes are available, and then insert them from the media library or use the image widget to ensure the optimal image sizes are used (including those for the responsive breakpoints). Avoid using `Full Size` images unless the dimensions are adequate for their usage. [Learn More](https://wordpress.org/support/article/inserting-images-into-posts-and-pages/)."
|
|
2059
|
+
},
|
|
2060
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-text-compression": {
|
|
2061
|
+
"message": "You can enable text compression in your web server configuration."
|
|
2062
|
+
},
|
|
2063
|
+
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-webp-images": {
|
|
2064
|
+
"message": "Consider using a [plugin](https://wordpress.org/plugins/search/convert+webp/) or service that will automatically convert your uploaded images to the optimal formats."
|
|
2065
|
+
}
|
|
2066
|
+
}
|