lighthouse 13.0.3 → 13.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/CONTRIBUTING.md +1 -1
- package/cli/bin.js +5 -0
- package/cli/test/smokehouse/__snapshots__/report-assert-test.js.snap +10 -10
- package/cli/test/smokehouse/config/exclusions.js +44 -0
- package/cli/test/smokehouse/frontends/smokehouse-bin.js +5 -4
- package/cli/test/smokehouse/lighthouse-runners/devtools-mcp.d.ts +14 -0
- package/cli/test/smokehouse/lighthouse-runners/devtools-mcp.js +141 -0
- package/core/audits/accessibility/autocomplete-valid.d.ts +10 -0
- package/core/audits/accessibility/autocomplete-valid.js +44 -0
- package/core/audits/accessibility/presentation-role-conflict.d.ts +10 -0
- package/core/audits/accessibility/presentation-role-conflict.js +46 -0
- package/core/audits/accessibility/svg-img-alt.d.ts +10 -0
- package/core/audits/accessibility/svg-img-alt.js +44 -0
- package/core/audits/agentic/agent-accessibility-tree.d.ts +19 -0
- package/core/audits/agentic/agent-accessibility-tree.js +115 -0
- package/core/audits/agentic/llms-txt.d.ts +20 -0
- package/core/audits/agentic/llms-txt.js +111 -0
- package/core/audits/baseline.d.ts +25 -0
- package/core/audits/baseline.js +190 -0
- package/core/audits/insights/insight-audit.d.ts +2 -2
- package/core/audits/insights/insight-audit.js +16 -6
- package/core/audits/layout-shifts.js +1 -1
- package/core/audits/server-response-time.js +3 -3
- package/core/audits/webmcp-form-coverage.d.ts +16 -0
- package/core/audits/webmcp-form-coverage.js +90 -0
- package/core/audits/webmcp-registered-tools.d.ts +21 -0
- package/core/audits/webmcp-registered-tools.js +149 -0
- package/core/audits/webmcp-schema-validity.d.ts +22 -0
- package/core/audits/webmcp-schema-validity.js +141 -0
- package/core/computed/document-urls.js +4 -2
- package/core/computed/main-resource.js +5 -3
- package/core/computed/metrics/lantern-metric.js +4 -4
- package/core/computed/metrics/lcp-breakdown.js +1 -1
- package/core/computed/metrics/time-to-first-byte.js +1 -1
- package/core/computed/navigation-insights.js +2 -1
- package/core/computed/network-analysis.js +3 -1
- package/core/config/agentic-browsing-config.d.ts +12 -0
- package/core/config/agentic-browsing-config.js +73 -0
- package/core/config/default-config.js +8 -0
- package/core/gather/driver/wait-for-condition.js +11 -1
- package/core/gather/gatherers/accessibility.js +5 -1
- package/core/gather/gatherers/agentic/llms-txt.d.ts +10 -0
- package/core/gather/gatherers/agentic/llms-txt.js +28 -0
- package/core/gather/gatherers/inputs.js +2 -0
- package/core/gather/gatherers/meta-elements.js +1 -1
- package/core/gather/gatherers/trace-elements.js +1 -1
- package/core/gather/gatherers/trace.js +3 -0
- package/core/gather/gatherers/webmcp-schema.d.ts +25 -0
- package/core/gather/gatherers/webmcp-schema.js +105 -0
- package/core/gather/gatherers/webmcp.d.ts +58 -0
- package/core/gather/gatherers/webmcp.js +159 -0
- package/core/index.d.ts +1 -0
- package/core/index.js +1 -0
- package/core/lib/baseline/web-features-metadata.json +3 -0
- package/core/lib/cdt/generated/SourceMap.js +2 -2
- package/core/lib/deprecations-strings.d.ts +169 -89
- package/core/lib/deprecations-strings.js +119 -24
- package/core/lib/navigation-error.js +5 -2
- package/core/lib/network-recorder.js +2 -1
- package/core/lib/page-functions.d.ts +3 -3
- package/core/lib/page-functions.js +11 -4
- package/core/lib/tracehouse/trace-processor.d.ts +5 -4
- package/core/lib/tracehouse/trace-processor.js +85 -19
- package/core/runner.js +3 -0
- package/core/scoring.d.ts +25 -0
- package/dist/report/bundle.esm.js +31 -3
- package/dist/report/flow.js +32 -4
- package/dist/report/standalone.js +32 -4
- package/flow-report/src/summary/category.tsx +1 -1
- package/package.json +12 -11
- package/report/assets/styles.css +28 -0
- package/report/renderer/category-renderer.js +1 -1
- package/report/renderer/components.js +1 -1
- package/report/renderer/details-renderer.d.ts +5 -0
- package/report/renderer/details-renderer.js +16 -0
- package/report/renderer/report-utils.d.ts +2 -1
- package/report/renderer/report-utils.js +7 -2
- package/report/types/report-renderer.d.ts +1 -1
- package/report/types/report-result.d.ts +1 -1
- package/shared/localization/locales/ar-XB.json +72 -36
- package/shared/localization/locales/ar.json +72 -36
- package/shared/localization/locales/bg.json +72 -36
- package/shared/localization/locales/ca.json +72 -36
- package/shared/localization/locales/cs.json +72 -36
- package/shared/localization/locales/da.json +74 -38
- package/shared/localization/locales/de.json +72 -36
- package/shared/localization/locales/el.json +73 -37
- package/shared/localization/locales/en-GB.json +74 -38
- package/shared/localization/locales/en-US.json +257 -17
- package/shared/localization/locales/en-XL.json +257 -17
- package/shared/localization/locales/es-419.json +72 -36
- package/shared/localization/locales/es.json +73 -37
- package/shared/localization/locales/fi.json +72 -36
- package/shared/localization/locales/fil.json +74 -38
- package/shared/localization/locales/fr.json +162 -126
- package/shared/localization/locales/he.json +74 -38
- package/shared/localization/locales/hi.json +73 -37
- package/shared/localization/locales/hr.json +72 -36
- package/shared/localization/locales/hu.json +73 -37
- package/shared/localization/locales/id.json +74 -38
- package/shared/localization/locales/it.json +72 -36
- package/shared/localization/locales/ja.json +72 -36
- package/shared/localization/locales/ko.json +72 -36
- package/shared/localization/locales/lt.json +72 -36
- package/shared/localization/locales/lv.json +72 -36
- package/shared/localization/locales/nl.json +73 -37
- package/shared/localization/locales/no.json +72 -36
- package/shared/localization/locales/pl.json +72 -36
- package/shared/localization/locales/pt-PT.json +72 -36
- package/shared/localization/locales/pt.json +74 -38
- package/shared/localization/locales/ro.json +72 -36
- package/shared/localization/locales/ru.json +72 -36
- package/shared/localization/locales/sk.json +72 -36
- package/shared/localization/locales/sl.json +72 -36
- package/shared/localization/locales/sr-Latn.json +73 -37
- package/shared/localization/locales/sr.json +73 -37
- package/shared/localization/locales/sv.json +75 -39
- package/shared/localization/locales/ta.json +73 -37
- package/shared/localization/locales/te.json +72 -36
- package/shared/localization/locales/th.json +73 -37
- package/shared/localization/locales/tr.json +72 -36
- package/shared/localization/locales/uk.json +72 -36
- package/shared/localization/locales/vi.json +74 -38
- package/shared/localization/locales/zh-HK.json +72 -36
- package/shared/localization/locales/zh-TW.json +74 -38
- package/shared/localization/locales/zh.json +75 -39
- package/tsconfig.json +2 -0
- package/types/artifacts.d.ts +66 -30
- package/types/audit.d.ts +1 -1
- package/types/config.d.ts +2 -1
- package/types/gatherer.d.ts +1 -1
- package/types/lhr/audit-details.d.ts +10 -4
- package/types/lhr/flow-result.d.ts +1 -1
- package/types/lhr/lhr.d.ts +12 -1
- package/types/lhr/treemap.d.ts +1 -1
- package/types/protocol.d.ts +1 -1
- package/types/puppeteer.d.ts +1 -1
- package/types/user-flow.d.ts +1 -1
- package/types/utility-types.d.ts +1 -1
|
@@ -206,6 +206,15 @@
|
|
|
206
206
|
"core/audits/accessibility/aria-valid-attr.js | title": {
|
|
207
207
|
"message": "`[aria-*]` attributes are valid and not misspelled"
|
|
208
208
|
},
|
|
209
|
+
"core/audits/accessibility/autocomplete-valid.js | description": {
|
|
210
|
+
"message": "The `autocomplete` attribute values must be valid and correctly applied for screen readers to function correctly. [Learn more about valid autocomplete values](https://dequeuniversity.com/rules/axe/4.11/autocomplete-valid)."
|
|
211
|
+
},
|
|
212
|
+
"core/audits/accessibility/autocomplete-valid.js | failureTitle": {
|
|
213
|
+
"message": "`autocomplete` attributes are not used correctly"
|
|
214
|
+
},
|
|
215
|
+
"core/audits/accessibility/autocomplete-valid.js | title": {
|
|
216
|
+
"message": "`autocomplete` attributes are used correctly"
|
|
217
|
+
},
|
|
209
218
|
"core/audits/accessibility/axe-audit.js | failingElementsHeader": {
|
|
210
219
|
"message": "Failing Elements"
|
|
211
220
|
},
|
|
@@ -470,6 +479,15 @@
|
|
|
470
479
|
"core/audits/accessibility/object-alt.js | title": {
|
|
471
480
|
"message": "`<object>` elements have alternate text"
|
|
472
481
|
},
|
|
482
|
+
"core/audits/accessibility/presentation-role-conflict.js | description": {
|
|
483
|
+
"message": "There are certain cases where the semantic role of an element with `role=\"none\"` or `role=\"presentation\"` does not resolve to none or presentation. To ensure the element remains removed from the accessibility tree, you should not add any global ARIA attributes to the element or make it focusable. [Learn more about presentation role conflict](https://dequeuniversity.com/rules/axe/4.11/presentation-role-conflict)."
|
|
484
|
+
},
|
|
485
|
+
"core/audits/accessibility/presentation-role-conflict.js | failureTitle": {
|
|
486
|
+
"message": "Elements with `role=\"none\"` or `role=\"presentation\"` have conflicts"
|
|
487
|
+
},
|
|
488
|
+
"core/audits/accessibility/presentation-role-conflict.js | title": {
|
|
489
|
+
"message": "Elements with `role=\"none\"` or `role=\"presentation\"` do not have conflicts"
|
|
490
|
+
},
|
|
473
491
|
"core/audits/accessibility/select-name.js | description": {
|
|
474
492
|
"message": "Form elements without effective labels can create frustrating experiences for screen reader users. [Learn more about the `select` element](https://dequeuniversity.com/rules/axe/4.11/select-name)."
|
|
475
493
|
},
|
|
@@ -488,6 +506,15 @@
|
|
|
488
506
|
"core/audits/accessibility/skip-link.js | title": {
|
|
489
507
|
"message": "Skip links are focusable."
|
|
490
508
|
},
|
|
509
|
+
"core/audits/accessibility/svg-img-alt.js | description": {
|
|
510
|
+
"message": "Ensures SVG elements with an `img`, `graphics-document` or `graphics-symbol` role have an accessible text alternative. [Learn more about SVG alt text](https://dequeuniversity.com/rules/axe/4.11/svg-img-alt)."
|
|
511
|
+
},
|
|
512
|
+
"core/audits/accessibility/svg-img-alt.js | failureTitle": {
|
|
513
|
+
"message": "SVG elements with an `img` role do not have an accessible text alternative"
|
|
514
|
+
},
|
|
515
|
+
"core/audits/accessibility/svg-img-alt.js | title": {
|
|
516
|
+
"message": "SVG elements with an `img` role have an accessible text alternative"
|
|
517
|
+
},
|
|
491
518
|
"core/audits/accessibility/tabindex.js | description": {
|
|
492
519
|
"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 about the `tabindex` attribute](https://dequeuniversity.com/rules/axe/4.11/tabindex)."
|
|
493
520
|
},
|
|
@@ -569,6 +596,51 @@
|
|
|
569
596
|
"core/audits/accessibility/video-caption.js | title": {
|
|
570
597
|
"message": "`<video>` elements contain a `<track>` element with `[kind=\"captions\"]`"
|
|
571
598
|
},
|
|
599
|
+
"core/audits/agentic/agent-accessibility-tree.js | columnElement": {
|
|
600
|
+
"message": "Failing Element"
|
|
601
|
+
},
|
|
602
|
+
"core/audits/agentic/agent-accessibility-tree.js | columnRule": {
|
|
603
|
+
"message": "Failing Rule"
|
|
604
|
+
},
|
|
605
|
+
"core/audits/agentic/agent-accessibility-tree.js | description": {
|
|
606
|
+
"message": "A well-formed accessibility tree helps AI agents to navigate and interact with the page."
|
|
607
|
+
},
|
|
608
|
+
"core/audits/agentic/agent-accessibility-tree.js | displayValuePassed": {
|
|
609
|
+
"message": "All audits passed"
|
|
610
|
+
},
|
|
611
|
+
"core/audits/agentic/agent-accessibility-tree.js | failedSectionTitle": {
|
|
612
|
+
"message": "Failed Audits"
|
|
613
|
+
},
|
|
614
|
+
"core/audits/agentic/agent-accessibility-tree.js | failureTitle": {
|
|
615
|
+
"message": "Accessibility tree is not well-formed"
|
|
616
|
+
},
|
|
617
|
+
"core/audits/agentic/agent-accessibility-tree.js | title": {
|
|
618
|
+
"message": "Accessibility tree is well-formed"
|
|
619
|
+
},
|
|
620
|
+
"core/audits/agentic/llms-txt.js | description": {
|
|
621
|
+
"message": "If your llms.txt file is malformed, large language models may not be able to understand how you want your website to be crawled or used for training. A valid llms.txt should be a Markdown file containing at least one H1 header. [Learn more about llms.txt](https://llmstxt.org/)."
|
|
622
|
+
},
|
|
623
|
+
"core/audits/agentic/llms-txt.js | displayValueHttpBadCode": {
|
|
624
|
+
"message": "Failed with HTTP status {statusCode}"
|
|
625
|
+
},
|
|
626
|
+
"core/audits/agentic/llms-txt.js | explanation": {
|
|
627
|
+
"message": "Fetch of llms.txt failed"
|
|
628
|
+
},
|
|
629
|
+
"core/audits/agentic/llms-txt.js | failureTitle": {
|
|
630
|
+
"message": "llms.txt is missing or incomplete"
|
|
631
|
+
},
|
|
632
|
+
"core/audits/agentic/llms-txt.js | missingH1": {
|
|
633
|
+
"message": "File is missing a required H1 header (e.g., \"# Title\")."
|
|
634
|
+
},
|
|
635
|
+
"core/audits/agentic/llms-txt.js | missingLinks": {
|
|
636
|
+
"message": "File does not appear to contain any links."
|
|
637
|
+
},
|
|
638
|
+
"core/audits/agentic/llms-txt.js | title": {
|
|
639
|
+
"message": "llms.txt is present"
|
|
640
|
+
},
|
|
641
|
+
"core/audits/agentic/llms-txt.js | tooShort": {
|
|
642
|
+
"message": "File is suspiciously short."
|
|
643
|
+
},
|
|
572
644
|
"core/audits/autocomplete.js | columnCurrent": {
|
|
573
645
|
"message": "Current Value"
|
|
574
646
|
},
|
|
@@ -596,6 +668,18 @@
|
|
|
596
668
|
"core/audits/autocomplete.js | warningOrder": {
|
|
597
669
|
"message": "Review order of tokens: \"{tokens}\" in {snippet}"
|
|
598
670
|
},
|
|
671
|
+
"core/audits/baseline.js | columnFeature": {
|
|
672
|
+
"message": "Web-features"
|
|
673
|
+
},
|
|
674
|
+
"core/audits/baseline.js | columnStatus": {
|
|
675
|
+
"message": "Baseline Status"
|
|
676
|
+
},
|
|
677
|
+
"core/audits/baseline.js | description": {
|
|
678
|
+
"message": "Lists web features used on the page and their Baseline status as of {date}. [Learn more about Baseline](https://webstatus.dev/)."
|
|
679
|
+
},
|
|
680
|
+
"core/audits/baseline.js | title": {
|
|
681
|
+
"message": "Baseline Features"
|
|
682
|
+
},
|
|
599
683
|
"core/audits/bf-cache.js | actionableFailureType": {
|
|
600
684
|
"message": "Actionable"
|
|
601
685
|
},
|
|
@@ -1262,6 +1346,93 @@
|
|
|
1262
1346
|
"core/audits/valid-source-maps.js | title": {
|
|
1263
1347
|
"message": "Page has valid source maps"
|
|
1264
1348
|
},
|
|
1349
|
+
"core/audits/webmcp-form-coverage.js | columnForm": {
|
|
1350
|
+
"message": "Form"
|
|
1351
|
+
},
|
|
1352
|
+
"core/audits/webmcp-form-coverage.js | description": {
|
|
1353
|
+
"message": "Consider adding WebMCP annotations to the forms listed below. This helps AI agents identify and interact with these forms more reliably."
|
|
1354
|
+
},
|
|
1355
|
+
"core/audits/webmcp-form-coverage.js | displayValue": {
|
|
1356
|
+
"message": "{itemCount, plural,\n =1 {1 form missing annotations}\n other {# forms missing annotations}\n }"
|
|
1357
|
+
},
|
|
1358
|
+
"core/audits/webmcp-form-coverage.js | title": {
|
|
1359
|
+
"message": "WebMCP form coverage"
|
|
1360
|
+
},
|
|
1361
|
+
"core/audits/webmcp-registered-tools.js | columnDeclarativeElement": {
|
|
1362
|
+
"message": "Element"
|
|
1363
|
+
},
|
|
1364
|
+
"core/audits/webmcp-registered-tools.js | columnDescription": {
|
|
1365
|
+
"message": "Description"
|
|
1366
|
+
},
|
|
1367
|
+
"core/audits/webmcp-registered-tools.js | columnImperativeLocation": {
|
|
1368
|
+
"message": "Source Location"
|
|
1369
|
+
},
|
|
1370
|
+
"core/audits/webmcp-registered-tools.js | columnInputSchema": {
|
|
1371
|
+
"message": "Input schema"
|
|
1372
|
+
},
|
|
1373
|
+
"core/audits/webmcp-registered-tools.js | columnTool": {
|
|
1374
|
+
"message": "Tool name"
|
|
1375
|
+
},
|
|
1376
|
+
"core/audits/webmcp-registered-tools.js | description": {
|
|
1377
|
+
"message": "Lists the WebMCP tools registered at the time of analysis. "
|
|
1378
|
+
},
|
|
1379
|
+
"core/audits/webmcp-registered-tools.js | title": {
|
|
1380
|
+
"message": "WebMCP tools registered"
|
|
1381
|
+
},
|
|
1382
|
+
"core/audits/webmcp-registered-tools.js | titleDeclarativeTools": {
|
|
1383
|
+
"message": "Declarative Tools"
|
|
1384
|
+
},
|
|
1385
|
+
"core/audits/webmcp-registered-tools.js | titleImperativeTools": {
|
|
1386
|
+
"message": "Imperative Tools"
|
|
1387
|
+
},
|
|
1388
|
+
"core/audits/webmcp-schema-validity.js | columnElement": {
|
|
1389
|
+
"message": "Element"
|
|
1390
|
+
},
|
|
1391
|
+
"core/audits/webmcp-schema-validity.js | columnIssue": {
|
|
1392
|
+
"message": "Issue"
|
|
1393
|
+
},
|
|
1394
|
+
"core/audits/webmcp-schema-validity.js | description": {
|
|
1395
|
+
"message": "Valid WebMCP schemas are required for AI agents to understand and interact with tools correctly. Please fix any errors or warnings reported by the browser."
|
|
1396
|
+
},
|
|
1397
|
+
"core/audits/webmcp-schema-validity.js | failureTitle": {
|
|
1398
|
+
"message": "WebMCP schemas are invalid"
|
|
1399
|
+
},
|
|
1400
|
+
"core/audits/webmcp-schema-validity.js | missingOptionalParamName": {
|
|
1401
|
+
"message": "Missing `name` attribute for an optional field. Add it to define the parameter name."
|
|
1402
|
+
},
|
|
1403
|
+
"core/audits/webmcp-schema-validity.js | missingParamDescription": {
|
|
1404
|
+
"message": "Add a description to make this form more accessible for AI agents."
|
|
1405
|
+
},
|
|
1406
|
+
"core/audits/webmcp-schema-validity.js | missingRequiredParamName": {
|
|
1407
|
+
"message": "Missing `name` attribute for a required field. Add it to define the parameter name."
|
|
1408
|
+
},
|
|
1409
|
+
"core/audits/webmcp-schema-validity.js | missingToolDescription": {
|
|
1410
|
+
"message": "Form level `tooldescription` attribute is missing. Add it to describe the tool for AI agents."
|
|
1411
|
+
},
|
|
1412
|
+
"core/audits/webmcp-schema-validity.js | missingToolName": {
|
|
1413
|
+
"message": "Form level `toolname` attribute is missing. Add it to define the tool name."
|
|
1414
|
+
},
|
|
1415
|
+
"core/audits/webmcp-schema-validity.js | title": {
|
|
1416
|
+
"message": "WebMCP schemas are valid"
|
|
1417
|
+
},
|
|
1418
|
+
"core/config/agentic-browsing-config.js | agentAccessibilityGroupDescription": {
|
|
1419
|
+
"message": "These audits highlight best practices for improving the accessibility of the website for AI agents."
|
|
1420
|
+
},
|
|
1421
|
+
"core/config/agentic-browsing-config.js | agentAccessibilityGroupTitle": {
|
|
1422
|
+
"message": "Agent Accessibility"
|
|
1423
|
+
},
|
|
1424
|
+
"core/config/agentic-browsing-config.js | agenticBrowsingCategoryDescription": {
|
|
1425
|
+
"message": "These checks ensure high-quality, browsable websites for AI agents and validate the correctness of WebMCP integrations. This category is still under development and subject to change."
|
|
1426
|
+
},
|
|
1427
|
+
"core/config/agentic-browsing-config.js | agenticBrowsingCategoryTitle": {
|
|
1428
|
+
"message": "Agentic Browsing"
|
|
1429
|
+
},
|
|
1430
|
+
"core/config/agentic-browsing-config.js | webmcpGroupDescription": {
|
|
1431
|
+
"message": "Audits validating WebMCP integration."
|
|
1432
|
+
},
|
|
1433
|
+
"core/config/agentic-browsing-config.js | webmcpGroupTitle": {
|
|
1434
|
+
"message": "WebMCP"
|
|
1435
|
+
},
|
|
1265
1436
|
"core/config/default-config.js | a11yAriaGroupDescription": {
|
|
1266
1437
|
"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."
|
|
1267
1438
|
},
|
|
@@ -1835,6 +2006,9 @@
|
|
|
1835
2006
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
1836
2007
|
"message": "Lighthouse User Flow Report"
|
|
1837
2008
|
},
|
|
2009
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | AttributionReporting": {
|
|
2010
|
+
"message": "Attribution Reporting is deprecated and will be removed. See https://goo.gle/ps-status for details."
|
|
2011
|
+
},
|
|
1838
2012
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | AuthorizationCoveredByWildcard": {
|
|
1839
2013
|
"message": "Authorization will not be covered by the wildcard symbol (*) in CORS Access-Control-Allow-Headers handling."
|
|
1840
2014
|
},
|
|
@@ -1856,9 +2030,6 @@
|
|
|
1856
2030
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesWasAlternateProtocolAvailable": {
|
|
1857
2031
|
"message": "chrome.loadTimes() is deprecated, instead use standardized API: nextHopProtocol in Navigation Timing 2."
|
|
1858
2032
|
},
|
|
1859
|
-
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CookieWithTruncatingChar": {
|
|
1860
|
-
"message": "Cookies containing a \\(0|r|n) character will be rejected instead of truncated."
|
|
1861
|
-
},
|
|
1862
2033
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginAccessBasedOnDocumentDomain": {
|
|
1863
2034
|
"message": "Relaxing the same-origin policy by setting document.domain is deprecated, and will be disabled by default. This deprecation warning is for a cross-origin access that was enabled by setting document.domain."
|
|
1864
2035
|
},
|
|
@@ -1871,6 +2042,18 @@
|
|
|
1871
2042
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | DataUrlInSvgUse": {
|
|
1872
2043
|
"message": "Support for data: URLs in SVGUseElement is deprecated and it will be removed in the future."
|
|
1873
2044
|
},
|
|
2045
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | DocumentCreateEventKeyboardEvents": {
|
|
2046
|
+
"message": "document.createEvent('KeyboardEvents') is deprecated and will be removed. Use new KeyboardEvent() instead."
|
|
2047
|
+
},
|
|
2048
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | DocumentCreateEventTransitionEvent": {
|
|
2049
|
+
"message": "document.createEvent('TransitionEvent') is deprecated and will be removed. Use new TransitionEvent() instead."
|
|
2050
|
+
},
|
|
2051
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ExampleBrowserProcessDeprecation": {
|
|
2052
|
+
"message": "This is an example for showing the code required for a browser process reported deprecation."
|
|
2053
|
+
},
|
|
2054
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | Fledge": {
|
|
2055
|
+
"message": "The Protected Audience API is deprecated and will be removed in a future release."
|
|
2056
|
+
},
|
|
1874
2057
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GeolocationInsecureOrigin": {
|
|
1875
2058
|
"message": "getCurrentPosition() and watchPosition() no longer work on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://www.chromium.org/Home/chromium-security/deprecating-powerful-features-on-insecure-origins/ for more details."
|
|
1876
2059
|
},
|
|
@@ -1895,14 +2078,29 @@
|
|
|
1895
2078
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | IntlV8BreakIterator": {
|
|
1896
2079
|
"message": "Intl.v8BreakIterator is deprecated. Please use Intl.Segmenter instead."
|
|
1897
2080
|
},
|
|
1898
|
-
"node_modules/@paulirish/trace_engine/generated/Deprecation.js |
|
|
1899
|
-
"message": "
|
|
2081
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LanguageModelParams": {
|
|
2082
|
+
"message": "LanguageModel.params() is deprecated and now only available in extension contexts. The topK and temperature related fields within its result are also deprecated."
|
|
2083
|
+
},
|
|
2084
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LanguageModelTemperature": {
|
|
2085
|
+
"message": "The 'temperature' parameter/attribute for LanguageModel is deprecated. It is only functional within extensions and may be removed in the future."
|
|
1900
2086
|
},
|
|
1901
|
-
"node_modules/@paulirish/trace_engine/generated/Deprecation.js |
|
|
1902
|
-
"message": "
|
|
2087
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LanguageModelTopK": {
|
|
2088
|
+
"message": "The 'topK' parameter/attribute for LanguageModel is deprecated. It is only functional within extensions and may be removed in the future."
|
|
1903
2089
|
},
|
|
1904
|
-
"node_modules/@paulirish/trace_engine/generated/Deprecation.js |
|
|
1905
|
-
"message": "
|
|
2090
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LanguageModel_InputQuota": {
|
|
2091
|
+
"message": "LanguageModel.inputQuota is deprecated. Please use LanguageModel.contextWindow instead. This alias is only available in extensions."
|
|
2092
|
+
},
|
|
2093
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LanguageModel_InputUsage": {
|
|
2094
|
+
"message": "LanguageModel.inputUsage is deprecated. Please use LanguageModel.contextUsage instead. This alias is only available in extensions."
|
|
2095
|
+
},
|
|
2096
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LanguageModel_MeasureInputUsage": {
|
|
2097
|
+
"message": "LanguageModel.measureInputUsage() is deprecated. Please use LanguageModel.measureContextUsage() instead. This alias is only available in extensions."
|
|
2098
|
+
},
|
|
2099
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LanguageModel_OnQuotaOverflow": {
|
|
2100
|
+
"message": "LanguageModel.onquotaoverflow is deprecated. Please use LanguageModel.oncontextoverflow instead. The LanguageModel.onquotaoverflow alias is only available in extensions."
|
|
2101
|
+
},
|
|
2102
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LocalCSSFileExtensionRejected": {
|
|
2103
|
+
"message": "CSS cannot be loaded from file: URLs unless they end in a .css file extension."
|
|
1906
2104
|
},
|
|
1907
2105
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NoSysexWebMIDIWithoutPermission": {
|
|
1908
2106
|
"message": "Web MIDI will ask a permission to use even if the sysex is not specified in the MIDIOptions."
|
|
@@ -1961,9 +2159,6 @@
|
|
|
1961
2159
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoSupportsFullscreen": {
|
|
1962
2160
|
"message": "HTMLVideoElement.webkitSupportsFullscreen is deprecated. Please use Document.fullscreenEnabled instead."
|
|
1963
2161
|
},
|
|
1964
|
-
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrivacySandboxExtensionsAPI": {
|
|
1965
|
-
"message": "We're deprecating the API chrome.privacy.websites.privacySandboxEnabled, though it will remain active for backward compatibility until release M113. Instead, please use chrome.privacy.websites.topicsEnabled, chrome.privacy.websites.fledgeEnabled and chrome.privacy.websites.adMeasurementEnabled. See https://developer.chrome.com/docs/extensions/reference/privacy/#property-websites-privacySandboxEnabled."
|
|
1966
|
-
},
|
|
1967
2162
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCConstraintEnableDtlsSrtpFalse": {
|
|
1968
2163
|
"message": "The constraint DtlsSrtpKeyAgreement is removed. You have specified a false value for this constraint, which is interpreted as an attempt to use the removed SDES key negotiation method. This functionality is removed; use a service that supports DTLS key negotiation instead."
|
|
1969
2164
|
},
|
|
@@ -1976,6 +2171,9 @@
|
|
|
1976
2171
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RangeExpand": {
|
|
1977
2172
|
"message": "Range.expand() is deprecated. Please use Selection.modify() instead."
|
|
1978
2173
|
},
|
|
2174
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RelatedWebsiteSets": {
|
|
2175
|
+
"message": "Related Website Sets is deprecated and will be removed. See https://privacysandbox.com/news/update-on-plans-for-privacy-sandbox-technologies/ for more details."
|
|
2176
|
+
},
|
|
1979
2177
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RequestedSubresourceWithEmbeddedCredentials": {
|
|
1980
2178
|
"message": "Subresource requests whose URLs contain embedded credentials (e.g. https://user:pass@host/) are blocked."
|
|
1981
2179
|
},
|
|
@@ -1985,21 +2183,36 @@
|
|
|
1985
2183
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | SharedArrayBufferConstructedWithoutIsolation": {
|
|
1986
2184
|
"message": "SharedArrayBuffer will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
|
|
1987
2185
|
},
|
|
2186
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | SharedStorage": {
|
|
2187
|
+
"message": "The Shared Storage API is deprecated and will be removed in a future release."
|
|
2188
|
+
},
|
|
2189
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | StorageAccessAPI_requestStorageAccessFor_Method": {
|
|
2190
|
+
"message": "document.requestStorageAccessFor is deprecated and will be removed. See https://privacysandbox.com/news/update-on-plans-for-privacy-sandbox-technologies/ for more details."
|
|
2191
|
+
},
|
|
1988
2192
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | TextToSpeech_DisallowedByAutoplay": {
|
|
1989
2193
|
"message": "speechSynthesis.speak() without user activation is deprecated and will be removed."
|
|
1990
2194
|
},
|
|
2195
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | Topics": {
|
|
2196
|
+
"message": "The Topics API is deprecated and will be removed in a future release."
|
|
2197
|
+
},
|
|
1991
2198
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | UnloadHandler": {
|
|
1992
2199
|
"message": "Unload event listeners are deprecated and will be removed."
|
|
1993
2200
|
},
|
|
1994
2201
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
|
1995
2202
|
"message": "Extensions should opt into cross-origin isolation to continue using SharedArrayBuffer. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
|
1996
2203
|
},
|
|
2204
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | WebBluetoothRemoteCharacteristicWriteValue": {
|
|
2205
|
+
"message": "BluetoothRemoteGATTCharacteristic.writeValue() is deprecated. Use writeValueWithResponse() or writeValueWithoutResponse() instead."
|
|
2206
|
+
},
|
|
1997
2207
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XHRJSONEncodingDetection": {
|
|
1998
2208
|
"message": "UTF-16 is not supported by response json in XMLHttpRequest"
|
|
1999
2209
|
},
|
|
2000
2210
|
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
|
2001
2211
|
"message": "Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/."
|
|
2002
2212
|
},
|
|
2213
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XSLT": {
|
|
2214
|
+
"message": "XSLTProcessor and XSLT Processing Instructions have been deprecated by all browsers. These features will be removed from this browser soon."
|
|
2215
|
+
},
|
|
2003
2216
|
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | animation": {
|
|
2004
2217
|
"message": "Animation"
|
|
2005
2218
|
},
|
|
@@ -2054,6 +2267,30 @@
|
|
|
2054
2267
|
"node_modules/@paulirish/trace_engine/models/trace/insights/Cache.js | title": {
|
|
2055
2268
|
"message": "Use efficient cache lifetimes"
|
|
2056
2269
|
},
|
|
2270
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | description": {
|
|
2271
|
+
"message": "A character encoding declaration is required. It can be done with a meta charset tag in the first 1024 bytes of the HTML or in the Content-Type HTTP response header. [Learn more about declaring the character encoding](https://developer.chrome.com/docs/insights/charset/)."
|
|
2272
|
+
},
|
|
2273
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | failedHttpHeader": {
|
|
2274
|
+
"message": "Does not declare charset in HTTP header"
|
|
2275
|
+
},
|
|
2276
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | failedMetaCharsetLate": {
|
|
2277
|
+
"message": "Declares charset using a meta tag after the first 1024 bytes"
|
|
2278
|
+
},
|
|
2279
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | failedMetaCharsetMissing": {
|
|
2280
|
+
"message": "Does not declare charset using a meta tag"
|
|
2281
|
+
},
|
|
2282
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | failedMetaCharsetUnknown": {
|
|
2283
|
+
"message": "Could not determine meta charset declaration from trace"
|
|
2284
|
+
},
|
|
2285
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | passingHttpHeader": {
|
|
2286
|
+
"message": "Declares charset in HTTP header"
|
|
2287
|
+
},
|
|
2288
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | passingMetaCharsetEarly": {
|
|
2289
|
+
"message": "Declares charset using a meta tag in the first 1024 bytes"
|
|
2290
|
+
},
|
|
2291
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | title": {
|
|
2292
|
+
"message": "Declare a character encoding"
|
|
2293
|
+
},
|
|
2057
2294
|
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | description": {
|
|
2058
2295
|
"message": "A large DOM can increase the duration of style calculations and layout reflows, impacting page responsiveness. A large DOM will also increase memory usage. [Learn how to avoid an excessive DOM size](https://developer.chrome.com/docs/performance/insights/dom-size)."
|
|
2059
2296
|
},
|
|
@@ -2153,8 +2390,8 @@
|
|
|
2153
2390
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | description": {
|
|
2154
2391
|
"message": "A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about [forced reflows](https://developer.chrome.com/docs/performance/insights/forced-reflow) and possible mitigations."
|
|
2155
2392
|
},
|
|
2156
|
-
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js |
|
|
2157
|
-
"message": "
|
|
2393
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | reflowCallFrames": {
|
|
2394
|
+
"message": "Call frames that trigger reflow"
|
|
2158
2395
|
},
|
|
2159
2396
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | title": {
|
|
2160
2397
|
"message": "Forced reflow"
|
|
@@ -2261,8 +2498,11 @@
|
|
|
2261
2498
|
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | fetchPriorityShouldBeApplied": {
|
|
2262
2499
|
"message": "fetchpriority=high should be applied"
|
|
2263
2500
|
},
|
|
2501
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | fetchPriorityShouldBeAppliedToImagePreload": {
|
|
2502
|
+
"message": "fetchpriority=high should be applied to the image preload request"
|
|
2503
|
+
},
|
|
2264
2504
|
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | lazyLoadNotApplied": {
|
|
2265
|
-
"message": "
|
|
2505
|
+
"message": "LCP resources should not use loading=lazy"
|
|
2266
2506
|
},
|
|
2267
2507
|
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | lcpLoadDelay": {
|
|
2268
2508
|
"message": "LCP image loaded {PH1} after earliest start point."
|
|
@@ -2370,13 +2610,13 @@
|
|
|
2370
2610
|
"message": "Duration"
|
|
2371
2611
|
},
|
|
2372
2612
|
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | noRenderBlocking": {
|
|
2373
|
-
"message": "No render
|
|
2613
|
+
"message": "No render-blocking requests for this navigation"
|
|
2374
2614
|
},
|
|
2375
2615
|
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | renderBlockingRequest": {
|
|
2376
2616
|
"message": "Request"
|
|
2377
2617
|
},
|
|
2378
2618
|
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | title": {
|
|
2379
|
-
"message": "Render
|
|
2619
|
+
"message": "Render-blocking requests"
|
|
2380
2620
|
},
|
|
2381
2621
|
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | description": {
|
|
2382
2622
|
"message": "If Recalculate Style costs remain high, selector optimization can reduce them. [Optimize the selectors](https://developer.chrome.com/docs/performance/insights/slow-css-selector) with both high elapsed time and high slow-path %. Simpler selectors, fewer selectors, a smaller DOM, and a shallower DOM will all reduce matching costs."
|