lighthouse 9.5.0-dev.20230131 → 9.5.0-dev.20230201

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.
Files changed (68) hide show
  1. package/core/audits/dobetterweb/{password-inputs-can-be-pasted-into.d.ts → paste-preventing-inputs.d.ts} +3 -3
  2. package/core/audits/dobetterweb/{password-inputs-can-be-pasted-into.js → paste-preventing-inputs.js} +17 -15
  3. package/core/config/default-config.js +2 -4
  4. package/core/gather/gatherers/inputs.js +6 -0
  5. package/core/legacy/config/legacy-default-config.js +0 -1
  6. package/core/runner.d.ts +1 -6
  7. package/core/runner.js +9 -20
  8. package/dist/report/bundle.esm.js +7 -9
  9. package/dist/report/flow.js +2 -2
  10. package/dist/report/standalone.js +2 -2
  11. package/package.json +1 -1
  12. package/report/renderer/report-ui-features.js +1 -1
  13. package/report/renderer/report-utils.d.ts +2 -2
  14. package/report/renderer/report-utils.js +6 -8
  15. package/report/test/renderer/report-ui-features-test.js +20 -31
  16. package/shared/localization/locales/ar-XB.json +0 -9
  17. package/shared/localization/locales/ar.json +0 -9
  18. package/shared/localization/locales/bg.json +0 -9
  19. package/shared/localization/locales/ca.json +0 -9
  20. package/shared/localization/locales/cs.json +0 -9
  21. package/shared/localization/locales/da.json +0 -9
  22. package/shared/localization/locales/de.json +0 -9
  23. package/shared/localization/locales/el.json +0 -9
  24. package/shared/localization/locales/en-GB.json +0 -9
  25. package/shared/localization/locales/en-US.json +6 -6
  26. package/shared/localization/locales/en-XA.json +0 -9
  27. package/shared/localization/locales/en-XL.json +6 -6
  28. package/shared/localization/locales/es-419.json +0 -9
  29. package/shared/localization/locales/es.json +0 -9
  30. package/shared/localization/locales/fi.json +0 -9
  31. package/shared/localization/locales/fil.json +0 -9
  32. package/shared/localization/locales/fr.json +0 -9
  33. package/shared/localization/locales/he.json +0 -9
  34. package/shared/localization/locales/hi.json +0 -9
  35. package/shared/localization/locales/hr.json +0 -9
  36. package/shared/localization/locales/hu.json +0 -9
  37. package/shared/localization/locales/id.json +0 -9
  38. package/shared/localization/locales/it.json +0 -9
  39. package/shared/localization/locales/ja.json +0 -9
  40. package/shared/localization/locales/ko.json +0 -9
  41. package/shared/localization/locales/lt.json +0 -9
  42. package/shared/localization/locales/lv.json +0 -9
  43. package/shared/localization/locales/nl.json +0 -9
  44. package/shared/localization/locales/no.json +0 -9
  45. package/shared/localization/locales/pl.json +0 -9
  46. package/shared/localization/locales/pt-PT.json +0 -9
  47. package/shared/localization/locales/pt.json +0 -9
  48. package/shared/localization/locales/ro.json +0 -9
  49. package/shared/localization/locales/ru.json +0 -9
  50. package/shared/localization/locales/sk.json +0 -9
  51. package/shared/localization/locales/sl.json +0 -9
  52. package/shared/localization/locales/sr-Latn.json +0 -9
  53. package/shared/localization/locales/sr.json +0 -9
  54. package/shared/localization/locales/sv.json +0 -9
  55. package/shared/localization/locales/ta.json +0 -9
  56. package/shared/localization/locales/te.json +0 -9
  57. package/shared/localization/locales/th.json +0 -9
  58. package/shared/localization/locales/tr.json +0 -9
  59. package/shared/localization/locales/uk.json +0 -9
  60. package/shared/localization/locales/vi.json +0 -9
  61. package/shared/localization/locales/zh-HK.json +0 -9
  62. package/shared/localization/locales/zh-TW.json +0 -9
  63. package/shared/localization/locales/zh.json +0 -9
  64. package/tsconfig.json +0 -1
  65. package/types/artifacts.d.ts +2 -5
  66. package/types/lhr/lhr.d.ts +3 -11
  67. package/core/gather/gatherers/dobetterweb/password-inputs-with-prevented-paste.d.ts +0 -10
  68. package/core/gather/gatherers/dobetterweb/password-inputs-with-prevented-paste.js +0 -49
@@ -109,11 +109,11 @@ class ReportUtils {
109
109
 
110
110
  /**
111
111
  * Mark TableItems/OpportunityItems with entity names.
112
- * @param {LH.Result.Entities|undefined} entityClassification
112
+ * @param {LH.Result.Entities|undefined} entities
113
113
  * @param {import('../../types/lhr/audit-result').Result} audit
114
114
  */
115
- static classifyEntities(entityClassification, audit) {
116
- if (!entityClassification) return;
115
+ static classifyEntities(entities, audit) {
116
+ if (!entities) return;
117
117
  if (audit.details?.type !== 'opportunity' && audit.details?.type !== 'table') {
118
118
  return;
119
119
  }
@@ -130,17 +130,15 @@ class ReportUtils {
130
130
  const url = urlLocatorFn(item);
131
131
  if (!url) continue;
132
132
 
133
- let origin;
133
+ let origin = '';
134
134
  try {
135
135
  // Non-URLs can appear in valueType: url columns, like 'Unattributable'
136
136
  origin = Util.parseURL(url).origin;
137
137
  } catch {}
138
138
  if (!origin) continue;
139
139
 
140
- const entityIndex = entityClassification.entityIndexByOrigin[origin];
141
- if (entityIndex === undefined) return;
142
- const entity = entityClassification.list[entityIndex];
143
- item.entity = entity.name;
140
+ const entity = entities.find(e => e.origins.includes(origin));
141
+ if (entity) item.entity = entity.name;
144
142
  }
145
143
  }
146
144
 
@@ -240,39 +240,28 @@ describe('ReportUIFeatures', () => {
240
240
 
241
241
  before(() => {
242
242
  // Setup entity-classification with recognized entities first.
243
- lhrJson.entities = {
244
- firstParty: 'example.com',
245
- list: [
246
- {
247
- name: 'example.com',
248
- isFirstParty: true,
249
- isUnrecognized: true,
250
- },
251
- {
252
- name: 'cdn.com',
253
- isUnrecognized: true,
254
- },
255
- {
256
- name: 'notexample.com',
257
- isUnrecognized: true,
258
- },
259
- {
260
- name: 'google.com',
261
- },
262
- ],
263
- entityIndexByOrigin: {
264
- 'http://www.example.com': 0,
265
- 'http://www.cdn.com': 1,
266
- 'http://www.notexample.com': 2,
267
- 'http://www.google.com': 3,
243
+ lhrJson.entities = [
244
+ {
245
+ name: 'example.com',
246
+ isFirstParty: true,
247
+ isUnrecognized: true,
248
+ origins: ['http://www.example.com'],
268
249
  },
269
- entityIndexByName: {
270
- 'example.com': 0,
271
- 'cdn.com': 1,
272
- 'notexample.com': 2,
273
- 'google.com': 3,
250
+ {
251
+ name: 'cdn.com',
252
+ isUnrecognized: true,
253
+ origins: ['http://www.cdn.com'],
274
254
  },
275
- };
255
+ {
256
+ name: 'notexample.com',
257
+ isUnrecognized: true,
258
+ origins: ['http://www.notexample.com'],
259
+ },
260
+ {
261
+ name: 'google.com',
262
+ origins: ['http://www.google.com'],
263
+ },
264
+ ];
276
265
 
277
266
  // Entity resolution is done during prepareReportResult
278
267
  const result = ReportUtils.prepareReportResult(lhrJson);
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "‏‮Avoids‬‏ ‏‮requesting‬‏ ‏‮the‬‏ ‏‮notification‬‏ ‏‮permission‬‏ ‏‮on‬‏ ‏‮page‬‏ ‏‮load‬‏"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "‏‮Preventing‬‏ ‏‮password‬‏ ‏‮pasting‬‏ ‏‮undermines‬‏ ‏‮good‬‏ ‏‮security‬‏ ‏‮policy‬‏. [‏‮Learn‬‏ ‏‮more‬‏](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "‏‮Prevents‬‏ ‏‮users‬‏ ‏‮to‬‏ ‏‮paste‬‏ ‏‮into‬‏ ‏‮password‬‏ ‏‮fields‬‏"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "‏‮Allows‬‏ ‏‮users‬‏ ‏‮to‬‏ ‏‮paste‬‏ ‏‮into‬‏ ‏‮password‬‏ ‏‮fields‬‏"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "‏‮Protocol‬‏"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "يتم تجنُّب طلب إذن الإشعار عند تحميل الصفحة"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "يؤدي منع لصق كلمة المرور إلى تقويض سياسة الأمان الجيدة. [مزيد من المعلومات](https://web.dev/password-inputs-can-be-pasted-into/)"
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "يتم منع المستخدمين من اللصق في حقول كلمات المرور"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "يتم السماح للمستخدمين باللصق في حقول كلمات المرور"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "البروتوكول"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Избягва да иска разрешение за известяване при зареждането на страницата"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Забраната на поставянето на пароли неутрализира добра практика за сигурност. [Научете повече](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Не позволява на потребителите да поставят в полетата за парола"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Разрешава на потребителите да поставят в полетата за парола"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Протокол"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Evita sol·licitar el permís de notificació en carregar la pàgina"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Impedir enganxar la contrasenya va en detriment d'una bona política de seguretat. [Obtén més informació](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Evita que els usuaris enganxin contingut als camps de contrasenya"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Permet que els usuaris enganxin contingut als camps de contrasenya"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protocol"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Nežádá při načtení stránky o oprávnění zobrazovat oznámení"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Blokování vkládání hesel je v rozporu s dobrými bezpečnostními zásadami. [Další informace](https://web.dev/password-inputs-can-be-pasted-into/)"
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Brání uživatelům ve vkládání obsahu do polí pro hesla"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Povoluje uživatelům vkládání obsahu do polí pro hesla"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protokol"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Undgår at anmode om tilladelse til notifikationer ved indlæsning af siden"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "En god sikkerhedspolitik undermineres ved at forhindre indsættelse af adgangskoder. [Få flere oplysninger](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Forhindrer brugere i at indsætte indhold i adgangskodefelter"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Tillader, at brugere indsætter indhold i adgangskodefelter"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protokol"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Fordert während des Seitenaufbaus keine Benachrichtigungsberechtigung an"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Das Einfügen von Passwörtern sollte entsprechend guten Sicherheitsrichtlinien zulässig sein. [Weitere Informationen.](https://web.dev/password-inputs-can-be-pasted-into/)"
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Hindert Nutzer daran, Inhalte in Passwortfelder einzufügen"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Erlaubt Nutzern, Inhalte in Passwortfelder einzufügen"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protokoll"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Αποφυγή αιτήματος για άδεια ειδοποίησης κατά τη φόρτωση σελίδων"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Η απαγόρευση της επικόλλησης κωδικών πρόσβασης υπονομεύει την ορθή πολιτική ασφάλειας. [Μάθετε περισσότερα](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Εμποδίζει την επικόλληση στα πεδία κωδικών πρόσβασης από τους χρήστες"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Επιτρέπει την επικόλληση στα πεδία κωδικών πρόσβασης από τους χρήστες"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Πρωτόκολλο"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Avoids requesting the notification permission on page load"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Preventing password pasting undermines good security policy. [Learn more](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Prevents users to paste into password fields"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Allows users to paste into password fields"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protocol"
877
868
  },
@@ -764,14 +764,14 @@
764
764
  "core/audits/dobetterweb/notification-on-start.js | title": {
765
765
  "message": "Avoids requesting the notification permission on page load"
766
766
  },
767
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
768
- "message": "Preventing password pasting undermines good security policy. [Learn more about user-friendly password fields](https://developer.chrome.com/docs/lighthouse/best-practices/password-inputs-can-be-pasted-into/)."
767
+ "core/audits/dobetterweb/paste-preventing-inputs.js | description": {
768
+ "message": "Preventing input pasting is a UX anti-pattern, and undermines good security policy. [Learn more about user-friendly input fields](https://developer.chrome.com/docs/lighthouse/best-practices/paste-preventing-inputs/)."
769
769
  },
770
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
771
- "message": "Prevents users to paste into password fields"
770
+ "core/audits/dobetterweb/paste-preventing-inputs.js | failureTitle": {
771
+ "message": "Prevents users from pasting into input fields"
772
772
  },
773
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
774
- "message": "Allows users to paste into password fields"
773
+ "core/audits/dobetterweb/paste-preventing-inputs.js | title": {
774
+ "message": "Allows users to paste into input fields"
775
775
  },
776
776
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
777
777
  "message": "Protocol"
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "[Åvöîðš ŕéqûéšţîñĝ ţĥé ñöţîƒîçåţîöñ þéŕmîššîöñ öñ þåĝé ļöåð one two three four five six seven eight nine ten eleven twelve]"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "[Þŕévéñţîñĝ þåššŵöŕð þåšţîñĝ ûñðéŕmîñéš ĝööð šéçûŕîţý þöļîçý. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://web.dev/password-inputs-can-be-pasted-into/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen]"
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "[Þŕévéñţš ûšéŕš ţö þåšţé îñţö þåššŵöŕð ƒîéļðš one two three four five six seven eight nine]"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "[Åļļöŵš ûšéŕš ţö þåšţé îñţö þåššŵöŕð ƒîéļðš one two three four five six seven eight nine]"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "[Þŕöţöçöļ one]"
877
868
  },
@@ -764,14 +764,14 @@
764
764
  "core/audits/dobetterweb/notification-on-start.js | title": {
765
765
  "message": "Âv́ôíd̂ś r̂éq̂úêśt̂ín̂ǵ t̂h́ê ńôt́îf́îćât́îón̂ ṕêŕm̂íŝśîón̂ ón̂ ṕâǵê ĺôád̂"
766
766
  },
767
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
768
- "message": "P̂ŕêv́êńt̂ín̂ǵ p̂áŝśŵór̂d́ p̂áŝt́îńĝ ún̂d́êŕm̂ín̂éŝ ǵôód̂ śêćûŕît́ŷ ṕôĺîćŷ. [Ĺêár̂ń m̂ór̂é âb́ôút̂ úŝér̂-f́r̂íêńd̂ĺŷ ṕâśŝẃôŕd̂îél̂d́](https://developer.chrome.com/docs/lighthouse/best-practices/password-inputs-can-be-pasted-into/)."
767
+ "core/audits/dobetterweb/paste-preventing-inputs.js | description": {
768
+ "message": "P̂ŕêv́êńt̂ín̂ǵ îńút̂ ṕât̂ín̂ǵ îâ ÚX̂ án̂t́î-ṕât́t̂ér̂ń, âńd̂ ún̂d́êŕm̂ín̂éŝ ǵôód̂ śêćûŕît́ŷ ṕôĺîćŷ. [Ĺêár̂ń m̂ór̂é âb́ôút̂ úŝér̂-f́r̂íêńd̂ĺŷ ín̂ṕût́ f̂íêĺd̂ś](https://developer.chrome.com/docs/lighthouse/best-practices/paste-preventing-inputs/)."
769
769
  },
770
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
771
- "message": "P̂ŕêv́êńt̂ś ûśêŕŝ t́ô ṕâśt̂é îńt̂ó p̂áŝśŵór̂d́íêĺd̂"
770
+ "core/audits/dobetterweb/paste-preventing-inputs.js | failureTitle": {
771
+ "message": "P̂ŕêv́êńt̂ś ûśêŕŝ f́óm̂ ṕâśt̂ín̂ǵ îńt̂ó îńp̂út̂ f́îél̂d́ŝ"
772
772
  },
773
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
774
- "message": "Âĺl̂óŵś ûśêŕŝ t́ô ṕâśt̂é îńt̂ó p̂áŝśŵór̂d́íêĺd̂"
773
+ "core/audits/dobetterweb/paste-preventing-inputs.js | title": {
774
+ "message": "Âĺl̂óŵś ûśêŕŝ t́ô ṕâśt̂é îńt̂ó îńp̂út̂ f́îél̂d́ŝ"
775
775
  },
776
776
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
777
777
  "message": "P̂ŕôt́ôćôĺ"
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Evita solicitar el permiso de notificaciones al cargar la página"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Evitar el pegado de contraseñas debilita las buenas políticas de seguridad. [Obtén más información](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Evita que los usuarios peguen contenido en los campos de contraseña"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Permite que los usuarios peguen contenido en los campos de contraseña"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protocolo"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Evita solicitar el permiso de notificación al cargar la página"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Evitar que se pueda pegar texto en el campo de contraseña debilita una buena política de seguridad. [Más información](https://web.dev/password-inputs-can-be-pasted-into/)"
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Impide que los usuarios peguen texto en los campos de contraseña"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Permite que los usuarios peguen texto en los campos de contraseña"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protocolo"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Välttää ilmoitusten käyttöoikeuden pyytämistä sivun latauksessa"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Salasanan liittämisen estäminen on hyvän tietoturvakäytännön vastaista. [Lue lisää](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Estää käyttäjiä liittämästä sisältöä salasanakenttiin"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Sallii käyttäjien liittää sisältöä salasanakenttiin"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protokolla"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Iniiwasan ang paghiling ng pahintulot sa notification sa pag-load ng page"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Pinapahina ng paghadlang sa pag-paste ng password ang magandang patakarang panseguridad. [Matuto pa](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Pinipigilan ang mga user na mag-paste sa mga field ng password"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Pinapayagan ang mga user na mag-paste sa mga field ng password"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protocol"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Aucune autorisation d'envoi de notifications n'est demandée au chargement de la page"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Empêcher la copie de contenu dans les champs de mot de passe nuit aux règles de sécurité. [En savoir plus](https://web.dev/password-inputs-can-be-pasted-into/)"
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "La copie de contenu n'est pas autorisée dans les champs de mot de passe"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Autoriser les utilisateurs à copier un contenu dans les champs de mot de passe"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protocole"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "הדף לא מבקש הרשאה להתראות במהלך טעינת הדף"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "מניעה של הדבקת סיסמאות פוגעת ביכולת לקיים מדיניות אבטחה טובה. [מידע נוסף](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "בדף הזה משתמשים לא יכולים להדביק תוכן מועתק לתוך שדות של סיסמאות"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "בדף הזה משתמשים יכולים להדביק תוכן מועתק לתוך שדות של סיסמאות"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "פרוטוקול"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "पेज लोड पर सूचना भेजने की मंज़ूरी का अनुरोध नहीं किया जाता"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "पासवर्ड वाले फ़ील्ड में कुछ कॉपी करके चिपकाने की सुविधा न लागू करने का मतलब है एक अच्छी सुरक्षा नीति को कमज़ोर समझना. [ज़्यादा जानें](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "इस्तेमाल करने वालों को पासवर्ड फ़ील्ड में पहले से कॉपी की गई जानकारी चिपकाने से रोकता है"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "इस्तेमाल करने वालों को पासवर्ड फ़ील्ड में पहले से कॉपी की गई जानकारी चिपकाने देता है"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "प्रोटोकॉल"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Izbjegava traženje dopuštenja za obavještavanje pri učitavanju stranice"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Sprječavanje lijepljenja zaporke narušava kvalitetu dobrih sigurnosnih pravila. [Saznajte više](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Onemogućuje korisnicima lijepljenje u polja za zaporku"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Omogućuje korisnicima lijepljenje u polja za zaporku"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protokol"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Kerüli az értesítésekre vonatkozó engedély kérését oldalbetöltéskor"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "A jelszóbeillesztés megakadályozása rossz biztonsági gyakorlat. [További információ](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Megakadályozza, hogy a felhasználók szöveget illesszenek be a jelszómezőkbe"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Lehetővé teszi, hogy a felhasználók beillesszenek a jelszómezőkbe"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protokoll"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Menghindari meminta izin notifikasi pada pemuatan halaman"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Mencegah menempelkan sandi akan merusak kebijakan keamanan yang baik. [Pelajari lebih lanjut](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Mencegah pengguna menempelkan sesuatu ke kolom sandi."
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Mengizinkan pengguna menempelkan sesuatu ke kolom sandi"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protokol"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Evita di chiedere l'autorizzazione di accesso alle notifiche durante il caricamento della pagina"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Impedire di incollare le password pregiudica l'efficacia delle norme di sicurezza. [Ulteriori informazioni](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Impedisce agli utenti di incollare contenuti nei campi delle password"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Consente agli utenti di incollare contenuti nei campi delle password"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protocollo"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "ページの読み込み時に通知の許可はリクエストされません"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "パスワードの貼り付けを禁止すると、良好なセキュリティ ポリシーが損なわれます。[詳細](https://web.dev/password-inputs-can-be-pasted-into/)"
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "ユーザーはパスワード欄に貼り付けできません"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "ユーザーはパスワード欄に貼り付けできます"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "プロトコル"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "페이지 로드 시 알림 권한 요청 방지하기"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "비밀번호 붙여넣기 방지로 인해 타당한 보안 정책이 저해됩니다. [자세히 알아보기](https://web.dev/password-inputs-can-be-pasted-into/)"
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "사용자가 비밀번호 입력란에 내용을 붙여넣지 못하도록 차단"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "사용자가 비밀번호 입력란에 붙여넣을 수 있도록 허용"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "프로토콜"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Įkeliant puslapį vengiama pateikti užklausą dėl pranešimų leidimo"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Neleidžiant įklijuoti slaptažodžių, pažeidžiama tinkamos saugos politika. [Sužinokite daugiau](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Naudotojams neleidžiama įklijuoti teksto į slaptažodžių laukus"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Naudotojams leidžiama įklijuoti tekstą į slaptažodžių laukus"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protokolas"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Netiek pieprasīta paziņojumu atļauja lapas ielādei"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Paroles ielīmēšanas novēršana neatbilst labai drošības politikai. [Uzziniet vairāk](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Neļauj lietotājiem ielīmēt paroles laukos"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Ļauj lietotājiem ielīmēt paroles laukos"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protokols"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Vermijdt verzoeken om de meldingsrechten bij laden van pagina"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Verhindering van het plakken van wachtwoorden ondermijnt een goed beveiligingsbeleid. [Meer informatie](https://web.dev/password-inputs-can-be-pasted-into/)"
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Voorkomt dat gebruikers kunnen plakken in wachtwoordvelden"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Laat gebruikers plakken in wachtwoordvelden"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protocol"
877
868
  },
@@ -863,15 +863,6 @@
863
863
  "core/audits/dobetterweb/notification-on-start.js | title": {
864
864
  "message": "Unngår å spørre om varseltillatelsen ved sideinnlasting"
865
865
  },
866
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": {
867
- "message": "Å hindre brukere i å lime inn passord underminerer gode retningslinjer for sikkerhet. [Finn ut mer](https://web.dev/password-inputs-can-be-pasted-into/)."
868
- },
869
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": {
870
- "message": "Forhindrer brukere fra å lime inn i passordfelt"
871
- },
872
- "core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | title": {
873
- "message": "Brukerne kan lime inn i passordfelt"
874
- },
875
866
  "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
876
867
  "message": "Protokoll"
877
868
  },