chrome-devtools-frontend 1.0.1001476 → 1.0.1003469

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 (88) hide show
  1. package/config/gni/devtools_grd_files.gni +5 -6
  2. package/front_end/core/common/ParsedURL.ts +3 -3
  3. package/front_end/core/host/InspectorFrontendHost.ts +30 -1
  4. package/front_end/core/host/InspectorFrontendHostAPI.ts +1 -0
  5. package/front_end/core/host/UserMetrics.ts +17 -1
  6. package/front_end/core/i18n/locales/en-US.json +24 -63
  7. package/front_end/core/i18n/locales/en-XL.json +24 -63
  8. package/front_end/core/protocol_client/InspectorBackend.ts +4 -0
  9. package/front_end/core/root/Runtime.ts +7 -3
  10. package/front_end/core/sdk/ServiceWorkerManager.ts +6 -5
  11. package/front_end/core/sdk/TracingModel.ts +5 -4
  12. package/front_end/devtools_compatibility.js +1 -0
  13. package/front_end/entrypoints/formatter_worker/FormatterActions.ts +14 -0
  14. package/front_end/entrypoints/formatter_worker/ScopeParser.ts +491 -0
  15. package/front_end/entrypoints/formatter_worker/Substitute.ts +4 -440
  16. package/front_end/entrypoints/formatter_worker/formatter_worker.ts +2 -0
  17. package/front_end/entrypoints/main/MainImpl.ts +1 -0
  18. package/front_end/generated/InspectorBackendCommands.js +42 -12
  19. package/front_end/generated/SupportedCSSProperties.js +3 -5
  20. package/front_end/generated/protocol-mapping.d.ts +5 -1
  21. package/front_end/generated/protocol-proxy-api.d.ts +4 -1
  22. package/front_end/generated/protocol.ts +68 -14
  23. package/front_end/models/bindings/CompilerScriptMapping.ts +1 -1
  24. package/front_end/models/issues_manager/AttributionReportingIssue.ts +6 -34
  25. package/front_end/models/issues_manager/DeprecationIssue.ts +84 -172
  26. package/front_end/models/issues_manager/Issue.ts +8 -4
  27. package/front_end/models/issues_manager/descriptions/arInvalidHeader.md +3 -0
  28. package/front_end/models/persistence/NetworkPersistenceManager.ts +20 -0
  29. package/front_end/models/timeline_model/TimelineModel.ts +2 -49
  30. package/front_end/panels/application/AppManifestView.ts +3 -3
  31. package/front_end/panels/application/ApplicationPanelCacheSection.ts +3 -1
  32. package/front_end/panels/application/ApplicationPanelSidebar.ts +11 -6
  33. package/front_end/panels/application/ApplicationPanelTreeElement.ts +2 -2
  34. package/front_end/panels/application/BackgroundServiceView.ts +5 -4
  35. package/front_end/panels/application/ResourcesPanel.ts +1 -1
  36. package/front_end/panels/console/ConsoleViewMessage.ts +6 -3
  37. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +3 -2
  38. package/front_end/panels/elements/StylePropertyTreeElement.ts +19 -13
  39. package/front_end/panels/elements/StylesSidebarPane.ts +74 -5
  40. package/front_end/panels/elements/stylesSidebarPane.css +3 -0
  41. package/front_end/panels/issues/AffectedResourcesView.ts +4 -3
  42. package/front_end/panels/issues/AffectedSourcesView.ts +2 -1
  43. package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +9 -38
  44. package/front_end/panels/issues/IssueView.ts +1 -1
  45. package/front_end/panels/lighthouse/LighthouseController.ts +6 -3
  46. package/front_end/panels/lighthouse/LighthouseReporterTypes.ts +2 -1
  47. package/front_end/panels/lighthouse/lighthousePanel.css +4 -0
  48. package/front_end/panels/network/NetworkLogView.ts +32 -0
  49. package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +2 -2
  50. package/front_end/panels/profiler/HeapSnapshotView.ts +2 -1
  51. package/front_end/panels/profiler/ProfileDataGrid.ts +1 -1
  52. package/front_end/panels/security/SecurityPanel.ts +6 -5
  53. package/front_end/panels/settings/SettingsScreen.ts +2 -3
  54. package/front_end/panels/sources/SourcesNavigator.ts +1 -1
  55. package/front_end/panels/sources/SourcesPanel.ts +1 -1
  56. package/front_end/panels/timeline/PerformanceModel.ts +2 -6
  57. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +5 -26
  58. package/front_end/panels/timeline/TimelineUIUtils.ts +14 -12
  59. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1036 -1088
  60. package/front_end/third_party/lighthouse/locales/en-US.json +244 -4
  61. package/front_end/third_party/lighthouse/locales/en-XL.json +244 -4
  62. package/front_end/third_party/lighthouse/report/bundle.d.ts +4 -22
  63. package/front_end/third_party/lighthouse/report/bundle.js +23 -366
  64. package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
  65. package/front_end/ui/components/docs/linkifier/simple-url.ts +2 -1
  66. package/front_end/ui/components/docs/panel_feedback/basic.ts +3 -2
  67. package/front_end/ui/components/docs/panel_feedback/button.ts +2 -1
  68. package/front_end/ui/components/linkifier/LinkifierImpl.ts +4 -3
  69. package/front_end/ui/components/linkifier/LinkifierUtils.ts +2 -3
  70. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +4 -6
  71. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +5 -4
  72. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +3 -3
  73. package/front_end/ui/components/text_editor/javascript.ts +6 -15
  74. package/front_end/ui/legacy/EmptyWidget.ts +2 -1
  75. package/front_end/ui/legacy/InspectorView.ts +29 -0
  76. package/front_end/ui/legacy/UIUtils.ts +4 -4
  77. package/front_end/ui/legacy/XLink.ts +12 -13
  78. package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +2 -4
  79. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +1 -1
  80. package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +0 -2
  81. package/front_end/ui/legacy/components/utils/ImagePreview.ts +3 -7
  82. package/front_end/ui/legacy/components/utils/Linkifier.ts +23 -23
  83. package/front_end/ui/legacy/toolbar.css +1 -1
  84. package/package.json +1 -1
  85. package/scripts/whitespaces.txt +1 -0
  86. package/front_end/models/issues_manager/descriptions/arInvalidAttributionSourceEventId.md +0 -3
  87. package/front_end/models/issues_manager/descriptions/arInvalidAttributionSourceExpiry.md +0 -4
  88. package/front_end/models/issues_manager/descriptions/arInvalidAttributionSourcePriority.md +0 -4
@@ -9,3 +9,4 @@ Surma was here.
9
9
  .
10
10
  Today's answer to life the universe and everything is 161!
11
11
  No good text, but numbers ... 2!
12
+ .
@@ -1,3 +0,0 @@
1
- # Ensure Attribution Source Event Id is a valid 64-bit integer
2
-
3
- An attribution source event was not recorded because the provided `attributionSourceEventId` is not a valid integer under 64 bits.
@@ -1,4 +0,0 @@
1
- # Ensure attribution source expiry is a valid number
2
-
3
- The expiry associated with an attribution source was defaulted to 30 days.
4
- This happens if the provided value is not a valid 64-bit signed integer.
@@ -1,4 +0,0 @@
1
- # Ensure attribution source priority is a valid number
2
-
3
- The priority associated with an attribution source was defaulted to `0`.
4
- This happens if the provided value is not a valid 64-bit signed integer.