lighthouse 8.6.0-dev.20211028 → 8.6.0-dev.20211029
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/flow-report/test/flow-report-pptr-test.ts +46 -0
- package/jest.config.js +1 -0
- package/lighthouse-core/audits/errors-in-console.js +0 -2
- package/lighthouse-core/audits/image-aspect-ratio.js +1 -2
- package/lighthouse-core/audits/image-size-responsive.js +4 -5
- package/lighthouse-core/audits/unsized-images.js +1 -1
- package/lighthouse-core/computed/image-records.js +4 -3
- package/lighthouse-core/config/default-config.js +0 -3
- package/lighthouse-core/fraggle-rock/config/default-config.js +0 -3
- package/lighthouse-core/gather/driver/storage.js +0 -1
- package/lighthouse-core/gather/gatherers/image-elements.js +0 -3
- package/package.json +2 -2
- package/shared/localization/locales/ar-XB.json +0 -12
- package/shared/localization/locales/ar.json +0 -12
- package/shared/localization/locales/bg.json +0 -12
- package/shared/localization/locales/ca.json +0 -12
- package/shared/localization/locales/cs.json +0 -12
- package/shared/localization/locales/da.json +0 -12
- package/shared/localization/locales/de.json +0 -12
- package/shared/localization/locales/el.json +0 -12
- package/shared/localization/locales/en-GB.json +0 -12
- package/shared/localization/locales/en-US.json +0 -12
- package/shared/localization/locales/en-XA.json +0 -12
- package/shared/localization/locales/en-XL.json +0 -12
- package/shared/localization/locales/es-419.json +0 -12
- package/shared/localization/locales/es.json +0 -12
- package/shared/localization/locales/fi.json +0 -12
- package/shared/localization/locales/fil.json +0 -12
- package/shared/localization/locales/fr.json +0 -12
- package/shared/localization/locales/he.json +0 -12
- package/shared/localization/locales/hi.json +0 -12
- package/shared/localization/locales/hr.json +0 -12
- package/shared/localization/locales/hu.json +0 -12
- package/shared/localization/locales/id.json +0 -12
- package/shared/localization/locales/it.json +0 -12
- package/shared/localization/locales/ja.json +0 -12
- package/shared/localization/locales/ko.json +0 -12
- package/shared/localization/locales/lt.json +0 -12
- package/shared/localization/locales/lv.json +0 -12
- package/shared/localization/locales/nl.json +0 -12
- package/shared/localization/locales/no.json +0 -12
- package/shared/localization/locales/pl.json +0 -12
- package/shared/localization/locales/pt-PT.json +0 -12
- package/shared/localization/locales/pt.json +0 -12
- package/shared/localization/locales/ro.json +0 -12
- package/shared/localization/locales/ru.json +0 -12
- package/shared/localization/locales/sk.json +0 -12
- package/shared/localization/locales/sl.json +0 -12
- package/shared/localization/locales/sr-Latn.json +0 -12
- package/shared/localization/locales/sr.json +0 -12
- package/shared/localization/locales/sv.json +0 -12
- package/shared/localization/locales/ta.json +0 -12
- package/shared/localization/locales/te.json +0 -12
- package/shared/localization/locales/th.json +0 -12
- package/shared/localization/locales/tr.json +0 -12
- package/shared/localization/locales/uk.json +0 -12
- package/shared/localization/locales/vi.json +0 -12
- package/shared/localization/locales/zh-HK.json +0 -12
- package/shared/localization/locales/zh-TW.json +0 -12
- package/shared/localization/locales/zh.json +0 -12
- package/types/artifacts.d.ts +5 -4
- package/lighthouse-core/audits/dobetterweb/appcache-manifest.js +0 -67
- package/lighthouse-core/gather/gatherers/dobetterweb/appcache.js +0 -34
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright 2021 The Lighthouse Authors. All Rights Reserved.
|
|
3
|
+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
4
|
+
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import {jest} from '@jest/globals';
|
|
8
|
+
import puppeteer, {Browser, Page} from 'puppeteer';
|
|
9
|
+
|
|
10
|
+
import ReportGenerator from '../../report/generator/report-generator.js';
|
|
11
|
+
import {flowResult} from './sample-flow';
|
|
12
|
+
|
|
13
|
+
jest.setTimeout(35_000);
|
|
14
|
+
|
|
15
|
+
describe('Lighthouse Flow Report', () => {
|
|
16
|
+
console.log('\n✨ Be sure to have recently run this: yarn build-report');
|
|
17
|
+
|
|
18
|
+
let browser: Browser;
|
|
19
|
+
let page: Page;
|
|
20
|
+
const pageErrors: Error[] = [];
|
|
21
|
+
|
|
22
|
+
beforeAll(async () => {
|
|
23
|
+
browser = await puppeteer.launch({
|
|
24
|
+
headless: true,
|
|
25
|
+
});
|
|
26
|
+
page = await browser.newPage();
|
|
27
|
+
page.on('pageerror', pageError => pageErrors.push(pageError));
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
afterAll(async () => {
|
|
31
|
+
if (pageErrors.length > 0) console.error(pageErrors);
|
|
32
|
+
|
|
33
|
+
await browser.close();
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
describe('Renders the flow report', () => {
|
|
37
|
+
beforeAll(async () => {
|
|
38
|
+
const html = ReportGenerator.generateFlowReportHtml(flowResult);
|
|
39
|
+
await page.setContent(html);
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
it('should load with no errors', async () => {
|
|
43
|
+
expect(pageErrors).toHaveLength(0);
|
|
44
|
+
});
|
|
45
|
+
});
|
|
46
|
+
});
|
package/jest.config.js
CHANGED
|
@@ -89,8 +89,7 @@ class ImageAspectRatio extends Audit {
|
|
|
89
89
|
// - filter all svgs as they have no natural dimensions to audit
|
|
90
90
|
// - filter out images that have falsy naturalWidth or naturalHeight
|
|
91
91
|
return !image.isCss &&
|
|
92
|
-
image.
|
|
93
|
-
image.mimeType !== 'image/svg+xml' &&
|
|
92
|
+
URL.guessMimeType(image.src) !== 'image/svg+xml' &&
|
|
94
93
|
image.naturalDimensions &&
|
|
95
94
|
image.naturalDimensions.height > 5 &&
|
|
96
95
|
image.naturalDimensions.width > 5 &&
|
|
@@ -45,7 +45,7 @@ const LARGE_IMAGE_FACTOR = 0.75;
|
|
|
45
45
|
// considered SMALL.
|
|
46
46
|
const SMALL_IMAGE_THRESHOLD = 64;
|
|
47
47
|
|
|
48
|
-
/** @typedef {{url: string, node: LH.Audit.Details.NodeValue,
|
|
48
|
+
/** @typedef {{url: string, node: LH.Audit.Details.NodeValue, displayedSize: string, actualSize: string, actualPixels: number, expectedSize: string, expectedPixels: number}} Result */
|
|
49
49
|
|
|
50
50
|
/**
|
|
51
51
|
* @param {{top: number, bottom: number, left: number, right: number}} imageRect
|
|
@@ -95,7 +95,7 @@ function isCandidate(image) {
|
|
|
95
95
|
) {
|
|
96
96
|
return false;
|
|
97
97
|
}
|
|
98
|
-
if (image.
|
|
98
|
+
if (URL.guessMimeType(image.src) === 'image/svg+xml') {
|
|
99
99
|
return false;
|
|
100
100
|
}
|
|
101
101
|
if (image.isCss) {
|
|
@@ -146,9 +146,8 @@ function getResult(image, DPR) {
|
|
|
146
146
|
const [expectedWidth, expectedHeight] =
|
|
147
147
|
expectedImageSize(image.displayedWidth, image.displayedHeight, DPR);
|
|
148
148
|
return {
|
|
149
|
-
url: image.src,
|
|
149
|
+
url: URL.elideDataURI(image.src),
|
|
150
150
|
node: Audit.makeNodeItem(image.node),
|
|
151
|
-
elidedUrl: URL.elideDataURI(image.src),
|
|
152
151
|
displayedSize: `${image.displayedWidth} x ${image.displayedHeight}`,
|
|
153
152
|
actualSize: `${image.naturalDimensions.width} x ${image.naturalDimensions.height}`,
|
|
154
153
|
actualPixels: image.naturalDimensions.width * image.naturalDimensions.height,
|
|
@@ -265,7 +264,7 @@ class ImageSizeResponsive extends Audit {
|
|
|
265
264
|
/** @type {LH.Audit.Details.Table['headings']} */
|
|
266
265
|
const headings = [
|
|
267
266
|
{key: 'node', itemType: 'node', text: ''},
|
|
268
|
-
{key: '
|
|
267
|
+
{key: 'url', itemType: 'url', text: str_(i18n.UIStrings.columnURL)},
|
|
269
268
|
{key: 'displayedSize', itemType: 'text', text: str_(UIStrings.columnDisplayed)},
|
|
270
269
|
{key: 'actualSize', itemType: 'text', text: str_(UIStrings.columnActual)},
|
|
271
270
|
{key: 'expectedSize', itemType: 'text', text: str_(UIStrings.columnExpected)},
|
|
@@ -106,7 +106,7 @@ class UnsizedImages extends Audit {
|
|
|
106
106
|
* @return {boolean}
|
|
107
107
|
*/
|
|
108
108
|
static isNonNetworkSvg(image) {
|
|
109
|
-
const isSvg = image.
|
|
109
|
+
const isSvg = URL.guessMimeType(image.src) === 'image/svg+xml';
|
|
110
110
|
const urlScheme = image.src.slice(0, image.src.indexOf(':'));
|
|
111
111
|
const isNonNetwork = URL.isNonNetworkProtocol(urlScheme);
|
|
112
112
|
return isSvg && isNonNetwork;
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
'use strict';
|
|
7
7
|
|
|
8
|
+
const URL = require('../lib/url-shim.js');
|
|
8
9
|
const makeComputedArtifact = require('./computed-artifact.js');
|
|
9
10
|
|
|
10
11
|
class ImageRecords {
|
|
@@ -28,12 +29,12 @@ class ImageRecords {
|
|
|
28
29
|
|
|
29
30
|
/**
|
|
30
31
|
* @param {{ImageElements: LH.Artifacts['ImageElements'], networkRecords: LH.Artifacts.NetworkRequest[]}} data
|
|
31
|
-
* @return {Promise<LH.Artifacts.
|
|
32
|
+
* @return {Promise<LH.Artifacts.ImageElementRecord[]>}
|
|
32
33
|
*/
|
|
33
34
|
static async compute_(data) {
|
|
34
35
|
const indexedNetworkRecords = ImageRecords.indexNetworkRecords(data.networkRecords);
|
|
35
36
|
|
|
36
|
-
/** @type {LH.Artifacts.
|
|
37
|
+
/** @type {LH.Artifacts.ImageElementRecord[]} */
|
|
37
38
|
const imageRecords = [];
|
|
38
39
|
|
|
39
40
|
for (const element of data.ImageElements) {
|
|
@@ -43,7 +44,7 @@ class ImageRecords {
|
|
|
43
44
|
// Don't change the guessed mime type if no mime type was found.
|
|
44
45
|
imageRecords.push({
|
|
45
46
|
...element,
|
|
46
|
-
mimeType: mimeType ? mimeType : element.
|
|
47
|
+
mimeType: mimeType ? mimeType : URL.guessMimeType(element.src),
|
|
47
48
|
});
|
|
48
49
|
}
|
|
49
50
|
|
|
@@ -147,7 +147,6 @@ const defaultConfig = {
|
|
|
147
147
|
'form-elements',
|
|
148
148
|
'main-document-content',
|
|
149
149
|
'global-listeners',
|
|
150
|
-
'dobetterweb/appcache',
|
|
151
150
|
'dobetterweb/doctype',
|
|
152
151
|
'dobetterweb/domstats',
|
|
153
152
|
'dobetterweb/optimized-images',
|
|
@@ -301,7 +300,6 @@ const defaultConfig = {
|
|
|
301
300
|
'byte-efficiency/efficient-animated-content',
|
|
302
301
|
'byte-efficiency/duplicated-javascript',
|
|
303
302
|
'byte-efficiency/legacy-javascript',
|
|
304
|
-
'dobetterweb/appcache-manifest',
|
|
305
303
|
'dobetterweb/doctype',
|
|
306
304
|
'dobetterweb/charset',
|
|
307
305
|
'dobetterweb/dom-size',
|
|
@@ -565,7 +563,6 @@ const defaultConfig = {
|
|
|
565
563
|
{id: 'charset', weight: 1, group: 'best-practices-browser-compat'},
|
|
566
564
|
// General Group
|
|
567
565
|
{id: 'no-unload-listeners', weight: 1, group: 'best-practices-general'},
|
|
568
|
-
{id: 'appcache-manifest', weight: 1, group: 'best-practices-general'},
|
|
569
566
|
{id: 'js-libraries', weight: 0, group: 'best-practices-general'},
|
|
570
567
|
{id: 'deprecations', weight: 1, group: 'best-practices-general'},
|
|
571
568
|
{id: 'errors-in-console', weight: 1, group: 'best-practices-general'},
|
|
@@ -37,7 +37,6 @@ const artifacts = {
|
|
|
37
37
|
Trace: '',
|
|
38
38
|
Accessibility: '',
|
|
39
39
|
AnchorElements: '',
|
|
40
|
-
AppCacheManifest: '',
|
|
41
40
|
CacheContents: '',
|
|
42
41
|
ConsoleMessages: '',
|
|
43
42
|
CSSUsage: '',
|
|
@@ -88,7 +87,6 @@ const defaultConfig = {
|
|
|
88
87
|
/* eslint-disable max-len */
|
|
89
88
|
{id: artifacts.Accessibility, gatherer: 'accessibility'},
|
|
90
89
|
{id: artifacts.AnchorElements, gatherer: 'anchor-elements'},
|
|
91
|
-
{id: artifacts.AppCacheManifest, gatherer: 'dobetterweb/appcache'},
|
|
92
90
|
{id: artifacts.CacheContents, gatherer: 'cache-contents'},
|
|
93
91
|
{id: artifacts.ConsoleMessages, gatherer: 'console-messages'},
|
|
94
92
|
{id: artifacts.CSSUsage, gatherer: 'css-usage'},
|
|
@@ -141,7 +139,6 @@ const defaultConfig = {
|
|
|
141
139
|
|
|
142
140
|
artifacts.Accessibility,
|
|
143
141
|
artifacts.AnchorElements,
|
|
144
|
-
artifacts.AppCacheManifest,
|
|
145
142
|
artifacts.CacheContents,
|
|
146
143
|
artifacts.ConsoleMessages,
|
|
147
144
|
artifacts.CSSUsage,
|
|
@@ -43,7 +43,6 @@ async function clearDataForOrigin(session, url) {
|
|
|
43
43
|
// indexeddb, websql, and localstorage are not cleared to prevent loss of potentially important data.
|
|
44
44
|
// https://chromedevtools.github.io/debugger-protocol-viewer/tot/Storage/#type-StorageType
|
|
45
45
|
const typesToClear = [
|
|
46
|
-
'appcache',
|
|
47
46
|
// 'cookies',
|
|
48
47
|
'file_systems',
|
|
49
48
|
'shader_cache',
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
const log = require('lighthouse-logger');
|
|
13
13
|
const FRGatherer = require('../../fraggle-rock/gather/base-gatherer.js');
|
|
14
14
|
const pageFunctions = require('../../lib/page-functions.js');
|
|
15
|
-
const URL = require('../../lib/url-shim.js');
|
|
16
15
|
const FontSize = require('./seo/font-size.js');
|
|
17
16
|
|
|
18
17
|
/* global window, getElementsInDocument, Image, getNodeDetails, ShadowRoot */
|
|
@@ -310,8 +309,6 @@ class ImageElements extends FRGatherer {
|
|
|
310
309
|
let skippedCount = 0;
|
|
311
310
|
|
|
312
311
|
for (const element of elements) {
|
|
313
|
-
element.mimeType = URL.guessMimeType(element.src);
|
|
314
|
-
|
|
315
312
|
if (reachedGatheringBudget) {
|
|
316
313
|
skippedCount++;
|
|
317
314
|
continue;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lighthouse",
|
|
3
|
-
"version": "8.6.0-dev.
|
|
3
|
+
"version": "8.6.0-dev.20211029",
|
|
4
4
|
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
|
5
5
|
"main": "./lighthouse-core/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"start": "yarn build-report --standalone && node ./lighthouse-cli/index.js",
|
|
38
38
|
"jest": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
|
|
39
39
|
"test": "yarn diff:sample-json && yarn lint --quiet && yarn unit && yarn type-check",
|
|
40
|
-
"test-bundle": "yarn smoke --runner bundle -j=1 --retries=2
|
|
40
|
+
"test-bundle": "yarn smoke --runner bundle -j=1 --retries=2 --invert-match forms",
|
|
41
41
|
"test-clients": "yarn jest \"$PWD/clients/\" && yarn jest --testMatch=\"**/clients/test/**/*-test-pptr.js\"",
|
|
42
42
|
"test-viewer": "yarn unit-viewer && yarn jest --testMatch=\"**/viewer/**/*-test-pptr.js\"",
|
|
43
43
|
"test-treemap": "yarn unit-treemap && yarn jest --testMatch=\"**/treemap/**/*-test-pptr.js\"",
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "Avoids deprecated APIs"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "Application Cache is deprecated. [Learn more](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "Found \"{AppCacheManifest}\""
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Uses Application Cache"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Avoids Application Cache"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"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/)."
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "يتم تجنّب واجهات برمجة التطبيقات المتوقفة"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "تم إيقاف ذاكرة التخزين المؤقت للتطبيق. [مزيد من المعلومات](https://web.dev/appcache-manifest/)"
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "تم العثور على \"{AppCacheManifest}\""
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "يتم استخدام ذاكرة التخزين المؤقت للتطبيق"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "يتم تجنُب ذاكرة التخزين المؤقت للتطبيق"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "تعريف ترميز الأحرف مطلوب. ويمكن إجراء ذلك باستخدام علامة `<meta>` في أول 1024 وحدة بايت من عنوان HTML أو في عنوان الاستجابة Content-Type في HTTP. [مزيد من المعلومات](https://web.dev/charset/)"
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "Избягва оттеглени API"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "Кешът на приложенията е оттеглен. [Научете повече](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "Намерихме {AppCacheManifest}"
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Използва кеша на приложенията"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Избягва кеша на приложенията"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "Трябва да декларирате система за кодиране на знаците. За целта можете да използвате маркер `<meta>` в първите 1024 байта на HTML кода или в заглавката Content-Type за HTTP отговор. [Научете повече](https://web.dev/charset/)."
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "Evita les API obsoletes"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "La memòria cau de l'aplicació està obsoleta. [Obtén més informació](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "S'ha trobat \"{AppCacheManifest}\""
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Utilitza la memòria cau de l'aplicació"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Evita la memòria cau de l'aplicació"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "Cal una declaració de codificació de caràcters. Es pot fer amb una etiqueta `<meta>` als primers 1.024 bytes de l'HTML o a la capçalera de resposta HTTP de tipus contingut. [Obtén més informació](https://web.dev/charset/)."
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "Nepoužívá zastaralá rozhraní API"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "Mezipaměť aplikace je zastaralá technologie. [Další informace](https://web.dev/appcache-manifest/)"
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "Nalezeno „{AppCacheManifest}“"
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Používá mezipaměť aplikace"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Nepoužívá mezipaměť aplikace"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "Je požadována deklarace kódování znaků. Lze ho deklarovat pomocí značky `<meta>` v prvních 1024 bajtech kódu HTML nebo pomocí záhlaví Content-Type odpovědi HTTP. [Další informace](https://web.dev/charset/)"
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "Undgår udfasede API'er"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "Application Cache er udfaset. [Få flere oplysninger](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "\"{AppCacheManifest}\" blev fundet"
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Bruger Application Cache"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Undgår Application Cache"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "Der skal angives en erklæring om tegnkodning. Det kan gøres med et `<meta>`-tag i de første 1024 bytes i HTML-koden eller i HTTP-svarheaderen for Content-Type. [Få flere oplysninger](https://web.dev/charset/)."
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "Vermeidet veraltete APIs"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "Application Cache ist veraltet. [Weitere Informationen.](https://web.dev/appcache-manifest/)"
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "\"{AppCacheManifest}\" gefunden"
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Verwendet Application Cache"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Vermeidet Application Cache"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "Eine Zeichencodierungsdeklaration ist erforderlich. Sie kann mit einem `<meta>`-Tag in den ersten 1024 Byte des HTML-Codes oder im HTTP-Antwortheader „Content-Type“ angegeben werden. [Weitere Informationen](https://web.dev/charset/)"
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "Αποφυγή καταργημένων API"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "Η κρυφή μνήμη εφαρμογής έχει καταργηθεί. [Μάθετε περισσότερα](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "Βρέθηκε \"{AppCacheManifest}\""
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Χρησιμοποιεί προσωρινή μνήμη εφαρμογής"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Αποφυγή προσωρινής μνήμης εφαρμογής"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "Απαιτείται δήλωση κωδικοποίησης χαρακτήρων. Μπορεί να πραγματοποιηθεί με μια ετικέτα `<meta>` στα πρώτα 1024 byte του κώδικα HTML ή στην κεφαλίδα απόκρισης HTTP τύπου περιεχομένου. [Μάθετε περισσότερα](https://web.dev/charset/)."
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "Avoids deprecated APIs"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "Application cache is deprecated. [Learn more](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "Found '{AppCacheManifest}'"
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Uses application cache"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Avoids application cache"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "A character encoding declaration is required. It can be done with a `<meta>` tag in the first 1,024 bytes of the HTML or in the Content-Type HTTP response header. [Learn more](https://web.dev/charset/)."
|
|
760
748
|
},
|
|
@@ -764,18 +764,6 @@
|
|
|
764
764
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
765
765
|
"message": "Avoids deprecated APIs"
|
|
766
766
|
},
|
|
767
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
768
|
-
"message": "Application Cache is deprecated. [Learn more](https://web.dev/appcache-manifest/)."
|
|
769
|
-
},
|
|
770
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
771
|
-
"message": "Found \"{AppCacheManifest}\""
|
|
772
|
-
},
|
|
773
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
774
|
-
"message": "Uses Application Cache"
|
|
775
|
-
},
|
|
776
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
777
|
-
"message": "Avoids Application Cache"
|
|
778
|
-
},
|
|
779
767
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
780
768
|
"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/)."
|
|
781
769
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "[Åvöîðš ðéþŕéçåţéð ÅÞΚ one two three]"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "[Åþþļîçåţîöñ Çåçĥé îš ðéþŕéçåţéð. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://web.dev/appcache-manifest/)ᐊ. one two three four five six seven eight nine ten eleven]"
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "[Föûñð \"ᐅ{AppCacheManifest}ᐊ\" one two three]"
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "[Ûšéš Åþþļîçåţîöñ Çåçĥé one two three]"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "[Åvöîðš Åþþļîçåţîöñ Çåçĥé one two three]"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "[Å çĥåŕåçţéŕ éñçöðîñĝ ðéçļåŕåţîöñ îš ŕéqûîŕéð. Îţ çåñ бé ðöñé ŵîţĥ å ᐅ`<meta>`ᐊ ţåĝ îñ ţĥé ƒîŕšţ 1024 бýţéš öƒ ţĥé ĤŢMĻ öŕ îñ ţĥé Çöñţéñţ-Ţýþé ĤŢŢÞ ŕéšþöñšé ĥéåðéŕ. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://web.dev/charset/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour]"
|
|
760
748
|
},
|
|
@@ -764,18 +764,6 @@
|
|
|
764
764
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
765
765
|
"message": "Âv́ôíd̂ś d̂ép̂ŕêćât́êd́ ÂṔÎś"
|
|
766
766
|
},
|
|
767
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
768
|
-
"message": "Âṕp̂ĺîćât́îón̂ Ćâćĥé îś d̂ép̂ŕêćât́êd́. [L̂éâŕn̂ ḿôŕê](https://web.dev/appcache-manifest/)."
|
|
769
|
-
},
|
|
770
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
771
|
-
"message": "F̂óûńd̂ \"{AppCacheManifest}\""
|
|
772
|
-
},
|
|
773
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
774
|
-
"message": "Ûśêś Âṕp̂ĺîćât́îón̂ Ćâćĥé"
|
|
775
|
-
},
|
|
776
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
777
|
-
"message": "Âv́ôíd̂ś Âṕp̂ĺîćât́îón̂ Ćâćĥé"
|
|
778
|
-
},
|
|
779
767
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
780
768
|
"message": "Â ćĥár̂áĉt́êŕ êńĉód̂ín̂ǵ d̂éĉĺâŕât́îón̂ íŝ ŕêq́ûír̂éd̂. Ít̂ ćâń b̂é d̂ón̂é ŵít̂h́ â `<meta>` t́âǵ îń t̂h́ê f́îŕŝt́ 1024 b̂ýt̂éŝ óf̂ t́ĥé ĤT́M̂Ĺ ôŕ îń t̂h́ê Ćôńt̂én̂t́-T̂ýp̂é ĤT́T̂Ṕ r̂éŝṕôńŝé ĥéâd́êŕ. [L̂éâŕn̂ ḿôŕê](https://web.dev/charset/)."
|
|
781
769
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "Evita las API obsoletas"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "La caché de aplicaciones es obsoleta. [Obtén más información](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "Se encontró \"{AppCacheManifest}\""
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Usa la caché de aplicaciones"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Evita la caché de aplicaciones"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "Se debe declarar la codificación de caracteres. Para eso, puede agregarse una etiqueta `<meta>` en los primeros 1024 bytes del HTML o en el encabezado de respuesta HTTP Content Type. [Obtén más información](https://web.dev/charset/)."
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "Evita las API obsoletas"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "La caché de aplicación está obsoleta. [Más información](https://web.dev/appcache-manifest/)"
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "Se ha detectado \"{AppCacheManifest}\""
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Usa caché de aplicación"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Evita la caché de aplicación"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "Es necesario declarar una codificación de caracteres. Puedes hacerlo utilizando una etiqueta `<meta>` situada en los primeros 1024 bytes del código HTML o en el encabezado de respuesta HTTP Content-Type. [Más información](https://web.dev/charset/)"
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "Välttää käytöstä poistettuja sovellusliittymiä"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "Sovellusvälimuisti on poistettu käytöstä. [Lue lisää](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "Löydetty {AppCacheManifest}"
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Käyttää sovellusvälimuistia"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Välttää sovellusvälimuistia"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "Merkistökoodausilmoitus vaaditaan. Sen voi tehdä `<meta>`-tagilla HTML:n ensimmäisen 1 024 tavun sisällä tai HTTP:n vastauksen otsikon sisältötyyppi-kohdassa. [Lue lisää](https://web.dev/charset/)."
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "Iniiwasan ang mga hindi na ginagamit na API"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "Hindi na ginagamit ang Cache ng Application. [Matuto pa](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "Nakita ang \"{AppCacheManifest}\""
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Gumagamit ng Cache ng Application"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Iniiwasan ang Application Cache"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "Kailangang mag-declare ng pag-encode ng character. Magagawa ito gamit ang isang `<meta>` tag sa unang 1024 na byte ng HTML o sa header ng sagot ng HTTP na Uri ng Content. [Matuto pa](https://web.dev/charset/)."
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "La page n'utilise pas d'API obsolètes"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "L'API Application Cache est obsolète. [En savoir plus](https://web.dev/appcache-manifest/)"
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "\"{AppCacheManifest}\" trouvé"
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "API Application Cache utilisée"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "API Application Cache non utilisée"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "La déclaration d'encodage des caractères est obligatoire. Elle peut être effectuée avec une balise `<meta>` dans les 1 024 premiers octets du code HTML, ou dans l'en-tête de réponse HTTP Content-Type. [En savoir plus](https://web.dev/charset/)"
|
|
760
748
|
},
|
|
@@ -743,18 +743,6 @@
|
|
|
743
743
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
744
|
"message": "אין רכיבי API שהוצאו משימוש"
|
|
745
745
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "Application Cache הוצא משימוש. [מידע נוסף](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "בשימוש: \"{AppCacheManifest}\""
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "נעשה שימוש ב-Application Cache"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "לא נעשה שימוש ב-Application Cache"
|
|
757
|
-
},
|
|
758
746
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
747
|
"message": "נדרשת הצהרה של קידוד תווים. ניתן להגדיר אותה באמצעות תג `<meta>` שממוקם ב-1,024 הבייטים הראשונים של ה-HTML או ברכיב ה-Content-Type בכותרת התגובה של ה-HTTP. [מידע נוסף](https://web.dev/charset/)."
|
|
760
748
|
},
|