chrome-devtools-frontend 1.0.940714 → 1.0.942529

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 (241) hide show
  1. package/config/gni/all_devtools_files.gni +0 -57
  2. package/config/gni/devtools_grd_files.gni +55 -15
  3. package/config/gni/devtools_image_files.gni +2 -3
  4. package/front_end/.eslintrc.js +12 -1
  5. package/front_end/Images/src/feedback_button_icon.svg +3 -0
  6. package/front_end/Images/src/{feedback_thin_16x16_icon.svg → survey_feedback_icon.svg} +1 -1
  7. package/front_end/Tests.js +15 -0
  8. package/front_end/core/common/Color.ts +5 -0
  9. package/front_end/core/i18n/locales/en-US.json +31 -28
  10. package/front_end/core/i18n/locales/en-XL.json +31 -28
  11. package/front_end/core/sdk/DebuggerModel.ts +4 -14
  12. package/front_end/core/sdk/sdk-meta.ts +17 -3
  13. package/front_end/emulated_devices/module.json +1 -3
  14. package/front_end/entrypoints/devtools_app/devtools_app.json +1 -9
  15. package/front_end/entrypoints/main/MainImpl.ts +26 -0
  16. package/front_end/entrypoints/shell/shell.js +0 -11
  17. package/front_end/entrypoints/shell/shell.json +0 -2
  18. package/front_end/entrypoints/worker_app/worker_app.json +0 -4
  19. package/front_end/generated/InspectorBackendCommands.js +1 -0
  20. package/front_end/generated/protocol.d.ts +2 -0
  21. package/front_end/global_typings/global_defs.d.ts +5 -0
  22. package/front_end/legacy_test_runner/bindings_test_runner/IsolatedFilesystemTestRunner.js +2 -2
  23. package/front_end/legacy_test_runner/console_test_runner/console_test_runner.js +14 -2
  24. package/front_end/legacy_test_runner/legacy_test_runner.ts +10 -1
  25. package/front_end/legacy_test_runner/test_runner/TestRunner.js +11 -0
  26. package/front_end/models/formatter/SourceFormatter.ts +0 -10
  27. package/front_end/models/workspace/UISourceCode.ts +9 -42
  28. package/front_end/panels/animation/AnimationTimeline.ts +3 -3
  29. package/front_end/panels/application/ApplicationPanelSidebar.ts +3 -3
  30. package/front_end/panels/application/application-meta.ts +0 -3
  31. package/front_end/panels/application/components/EndpointsGrid.ts +1 -1
  32. package/front_end/panels/application/components/ReportsGrid.ts +1 -1
  33. package/front_end/panels/console/ConsolePinPane.ts +21 -26
  34. package/front_end/panels/coverage/CoverageDecorationManager.ts +4 -5
  35. package/front_end/panels/coverage/CoverageView.ts +2 -105
  36. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +11 -56
  37. package/front_end/panels/css_overview/components/cssOverviewStartView.css +1 -8
  38. package/front_end/panels/elements/ElementsTreeElement.ts +4 -9
  39. package/front_end/panels/elements/components/StylePropertyEditor.ts +2 -0
  40. package/front_end/panels/elements/components/adornerSettingsPane.css +0 -4
  41. package/front_end/panels/emulation/DeviceModeToolbar.ts +3 -1
  42. package/front_end/panels/emulation/DeviceModeView.ts +2 -1
  43. package/front_end/panels/emulation/InspectedPagePlaceholder.ts +3 -1
  44. package/front_end/panels/emulation/MediaQueryInspector.ts +3 -1
  45. package/front_end/panels/emulation/emulation-meta.ts +2 -4
  46. package/front_end/panels/issues/issues-meta.ts +0 -2
  47. package/front_end/panels/layers/module.json +0 -1
  48. package/front_end/panels/lighthouse/LighthousePanel.ts +2 -4
  49. package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +1 -4
  50. package/front_end/panels/lighthouse/lighthouseStartView.css +4 -0
  51. package/front_end/panels/lighthouse/module.json +1 -4
  52. package/front_end/panels/media/media-meta.ts +0 -3
  53. package/front_end/panels/network/ResourceWebSocketFrameView.ts +2 -1
  54. package/front_end/panels/network/network-meta.ts +0 -3
  55. package/front_end/panels/profiler/module.json +1 -4
  56. package/front_end/panels/screencast/module.json +1 -4
  57. package/front_end/panels/security/security-meta.ts +0 -3
  58. package/front_end/panels/sources/BreakpointEditDialog.ts +16 -30
  59. package/front_end/panels/sources/CSSPlugin.ts +310 -331
  60. package/front_end/panels/sources/CallStackSidebarPane.ts +28 -34
  61. package/front_end/panels/sources/CoveragePlugin.ts +121 -6
  62. package/front_end/panels/sources/DebuggerPlugin.ts +1166 -1243
  63. package/front_end/panels/sources/EditingLocationHistoryManager.ts +71 -101
  64. package/front_end/panels/sources/GoToLineQuickOpen.ts +4 -3
  65. package/front_end/panels/sources/InplaceFormatterEditorAction.ts +3 -3
  66. package/front_end/panels/sources/JavaScriptCompilerPlugin.ts +26 -23
  67. package/front_end/panels/sources/Plugin.ts +20 -4
  68. package/front_end/panels/sources/ProfilePlugin.ts +185 -0
  69. package/front_end/panels/sources/ScriptFormatterEditorAction.ts +3 -3
  70. package/front_end/panels/sources/ScriptOriginPlugin.ts +0 -10
  71. package/front_end/panels/sources/SnippetsPlugin.ts +1 -10
  72. package/front_end/panels/sources/SourcesPanel.ts +15 -10
  73. package/front_end/panels/sources/SourcesView.ts +10 -8
  74. package/front_end/panels/sources/TabbedEditorContainer.ts +31 -27
  75. package/front_end/panels/sources/UISourceCodeFrame.ts +335 -470
  76. package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +3 -2
  77. package/front_end/panels/sources/sources-legacy.ts +0 -6
  78. package/front_end/panels/sources/sources.ts +0 -2
  79. package/front_end/panels/timeline/module.json +0 -3
  80. package/front_end/third_party/codemirror.next/bundle.ts +9 -13
  81. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  82. package/front_end/third_party/codemirror.next/chunk/javascript.js +2 -2
  83. package/front_end/third_party/codemirror.next/chunk/markdown.js +2 -6
  84. package/front_end/third_party/codemirror.next/chunk/php.js +2 -6
  85. package/front_end/third_party/codemirror.next/chunk/python.js +1 -1
  86. package/front_end/third_party/codemirror.next/chunk/wast.js +1 -1
  87. package/front_end/third_party/codemirror.next/chunk/xml.js +2 -2
  88. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +279 -198
  89. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
  90. package/front_end/third_party/codemirror.next/package.json +13 -11
  91. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1128 -1158
  92. package/front_end/third_party/lighthouse/locales/ar-XB.json +211 -79
  93. package/front_end/third_party/lighthouse/locales/ar.json +213 -81
  94. package/front_end/third_party/lighthouse/locales/bg.json +211 -79
  95. package/front_end/third_party/lighthouse/locales/ca.json +212 -80
  96. package/front_end/third_party/lighthouse/locales/cs.json +211 -79
  97. package/front_end/third_party/lighthouse/locales/da.json +211 -79
  98. package/front_end/third_party/lighthouse/locales/de.json +211 -79
  99. package/front_end/third_party/lighthouse/locales/el.json +213 -81
  100. package/front_end/third_party/lighthouse/locales/en-GB.json +211 -79
  101. package/front_end/third_party/lighthouse/locales/en-US.json +186 -75
  102. package/front_end/third_party/lighthouse/locales/en-XA.json +211 -79
  103. package/front_end/third_party/lighthouse/locales/en-XL.json +186 -75
  104. package/front_end/third_party/lighthouse/locales/es-419.json +211 -79
  105. package/front_end/third_party/lighthouse/locales/es.json +212 -80
  106. package/front_end/third_party/lighthouse/locales/fi.json +211 -79
  107. package/front_end/third_party/lighthouse/locales/fil.json +211 -79
  108. package/front_end/third_party/lighthouse/locales/fr.json +211 -79
  109. package/front_end/third_party/lighthouse/locales/he.json +212 -80
  110. package/front_end/third_party/lighthouse/locales/hi.json +214 -82
  111. package/front_end/third_party/lighthouse/locales/hr.json +211 -79
  112. package/front_end/third_party/lighthouse/locales/hu.json +211 -79
  113. package/front_end/third_party/lighthouse/locales/id.json +211 -79
  114. package/front_end/third_party/lighthouse/locales/it.json +211 -79
  115. package/front_end/third_party/lighthouse/locales/ja.json +211 -79
  116. package/front_end/third_party/lighthouse/locales/ko.json +211 -79
  117. package/front_end/third_party/lighthouse/locales/lt.json +211 -79
  118. package/front_end/third_party/lighthouse/locales/lv.json +214 -82
  119. package/front_end/third_party/lighthouse/locales/nl.json +211 -79
  120. package/front_end/third_party/lighthouse/locales/no.json +211 -79
  121. package/front_end/third_party/lighthouse/locales/pl.json +211 -79
  122. package/front_end/third_party/lighthouse/locales/pt-PT.json +211 -79
  123. package/front_end/third_party/lighthouse/locales/pt.json +211 -79
  124. package/front_end/third_party/lighthouse/locales/ro.json +212 -80
  125. package/front_end/third_party/lighthouse/locales/ru.json +211 -79
  126. package/front_end/third_party/lighthouse/locales/sk.json +211 -79
  127. package/front_end/third_party/lighthouse/locales/sl.json +211 -79
  128. package/front_end/third_party/lighthouse/locales/sr-Latn.json +211 -79
  129. package/front_end/third_party/lighthouse/locales/sr.json +211 -79
  130. package/front_end/third_party/lighthouse/locales/sv.json +211 -79
  131. package/front_end/third_party/lighthouse/locales/ta.json +218 -86
  132. package/front_end/third_party/lighthouse/locales/te.json +251 -119
  133. package/front_end/third_party/lighthouse/locales/th.json +211 -79
  134. package/front_end/third_party/lighthouse/locales/tr.json +211 -79
  135. package/front_end/third_party/lighthouse/locales/uk.json +212 -80
  136. package/front_end/third_party/lighthouse/locales/vi.json +211 -79
  137. package/front_end/third_party/lighthouse/locales/zh-HK.json +211 -79
  138. package/front_end/third_party/lighthouse/locales/zh-TW.json +211 -79
  139. package/front_end/third_party/lighthouse/locales/zh.json +211 -79
  140. package/front_end/third_party/lighthouse/report/bundle.d.ts +72 -34
  141. package/front_end/third_party/lighthouse/report/bundle.js +698 -492
  142. package/front_end/third_party/lighthouse/report-assets/report-generator.js +1 -2
  143. package/front_end/third_party/lighthouse/report-assets/report.js +40 -35
  144. package/front_end/third_party/lighthouse/report-assets/standalone-template.html +2 -4
  145. package/front_end/ui/components/code_highlighter/CodeHighlighter.ts +60 -68
  146. package/front_end/ui/components/data_grid/dataGrid.css +12 -10
  147. package/front_end/ui/components/docs/css_overview/start_view.html +25 -0
  148. package/front_end/ui/components/docs/css_overview/start_view.ts +14 -0
  149. package/front_end/ui/components/docs/icon_button/basic.ts +3 -3
  150. package/front_end/ui/components/docs/panel_feedback/basic.html +25 -0
  151. package/front_end/ui/components/docs/panel_feedback/basic.ts +20 -0
  152. package/front_end/ui/components/docs/panel_feedback/button.html +25 -0
  153. package/front_end/ui/components/docs/panel_feedback/button.ts +18 -0
  154. package/front_end/ui/components/helpers/get-stylesheet.ts +0 -13
  155. package/front_end/ui/components/markdown_view/MarkdownImagesMap.ts +1 -1
  156. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +67 -0
  157. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +100 -0
  158. package/front_end/ui/components/panel_feedback/panelFeedback.css +76 -0
  159. package/front_end/ui/components/panel_feedback/panel_feedback.ts +6 -0
  160. package/front_end/ui/components/report_view/reportValue.css +1 -0
  161. package/front_end/ui/components/survey_link/SurveyLink.ts +1 -1
  162. package/front_end/ui/components/text_editor/TextEditor.ts +79 -36
  163. package/front_end/ui/components/text_editor/config.ts +42 -26
  164. package/front_end/ui/components/text_editor/javascript.ts +2 -3
  165. package/front_end/ui/components/text_editor/position.ts +17 -0
  166. package/front_end/ui/components/text_editor/text_editor.ts +1 -0
  167. package/front_end/ui/components/text_editor/theme.ts +5 -1
  168. package/front_end/ui/legacy/Dialog.ts +3 -1
  169. package/front_end/ui/legacy/DropTarget.ts +2 -1
  170. package/front_end/ui/legacy/EmptyWidget.ts +2 -1
  171. package/front_end/ui/legacy/FilterBar.ts +2 -1
  172. package/front_end/ui/legacy/GlassPane.ts +4 -2
  173. package/front_end/ui/legacy/Infobar.ts +5 -8
  174. package/front_end/ui/legacy/InspectorView.ts +6 -1
  175. package/front_end/ui/legacy/ListWidget.ts +2 -1
  176. package/front_end/ui/legacy/PopoverHelper.ts +2 -1
  177. package/front_end/ui/legacy/ProgressIndicator.ts +2 -1
  178. package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +2 -1
  179. package/front_end/ui/legacy/ReportView.ts +2 -1
  180. package/front_end/ui/legacy/RootView.ts +2 -1
  181. package/front_end/ui/legacy/SearchableView.ts +2 -1
  182. package/front_end/ui/legacy/ShortcutRegistry.ts +11 -7
  183. package/front_end/ui/legacy/SoftContextMenu.ts +2 -1
  184. package/front_end/ui/legacy/SoftDropDown.ts +4 -2
  185. package/front_end/ui/legacy/SplitWidget.ts +2 -1
  186. package/front_end/ui/legacy/SuggestBox.ts +2 -1
  187. package/front_end/ui/legacy/TabbedPane.ts +2 -1
  188. package/front_end/ui/legacy/TargetCrashedScreen.ts +2 -1
  189. package/front_end/ui/legacy/TextPrompt.ts +2 -1
  190. package/front_end/ui/legacy/Toolbar.ts +3 -2
  191. package/front_end/ui/legacy/Treeoutline.ts +3 -2
  192. package/front_end/ui/legacy/UIUtils.ts +16 -13
  193. package/front_end/ui/legacy/ViewManager.ts +2 -1
  194. package/front_end/ui/legacy/Widget.ts +1 -1
  195. package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +2 -1
  196. package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +3 -1
  197. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +2 -1
  198. package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +35 -131
  199. package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +2 -1
  200. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +3 -1
  201. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +2 -1
  202. package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +2 -2
  203. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.ts +3 -6
  204. package/front_end/ui/legacy/components/source_frame/FontView.ts +1 -0
  205. package/front_end/ui/legacy/components/source_frame/ImageView.ts +1 -0
  206. package/front_end/ui/legacy/components/source_frame/JSONView.ts +1 -0
  207. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +19 -14
  208. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +502 -252
  209. package/front_end/ui/legacy/components/source_frame/XMLView.ts +2 -0
  210. package/front_end/ui/legacy/components/source_frame/module.json +0 -3
  211. package/front_end/ui/legacy/components/source_frame/source_frame-legacy.ts +0 -11
  212. package/front_end/ui/legacy/components/source_frame/source_frame.ts +0 -2
  213. package/front_end/ui/legacy/components/text_editor/CodeMirrorTextEditor.ts +2 -0
  214. package/front_end/ui/legacy/components/text_editor/cmdevtools.css +3 -1
  215. package/front_end/ui/legacy/components/text_editor/module.json +0 -3
  216. package/front_end/ui/legacy/components/utils/Linkifier.ts +7 -15
  217. package/front_end/ui/legacy/radioButton.css +1 -13
  218. package/front_end/ui/legacy/softContextMenu.css +1 -0
  219. package/front_end/ui/legacy/themeColors.css +36 -0
  220. package/front_end/ui/legacy/theme_support/theme_support_impl.ts +7 -9
  221. package/front_end/ui/legacy/utils/append-style.ts +9 -4
  222. package/front_end/ui/legacy/utils/create-shadow-root-with-core-styles.ts +2 -2
  223. package/front_end/ui/legacy/utils/inject-core-styles.ts +7 -4
  224. package/package.json +1 -1
  225. package/scripts/build/generate_css_js_files.js +23 -9
  226. package/scripts/build/ninja/generate_css.gni +10 -1
  227. package/scripts/eslint_rules/lib/check_css_import.js +2 -2
  228. package/scripts/eslint_rules/tests/check_css_import_test.js +12 -0
  229. package/front_end/Images/radioDot-dark-theme.png +0 -0
  230. package/front_end/Images/radioDot.png +0 -0
  231. package/front_end/panels/application/module.json +0 -7
  232. package/front_end/panels/emulation/module.json +0 -11
  233. package/front_end/panels/issues/module.json +0 -6
  234. package/front_end/panels/layer_viewer/module.json +0 -6
  235. package/front_end/panels/media/module.json +0 -6
  236. package/front_end/panels/network/module.json +0 -6
  237. package/front_end/panels/security/module.json +0 -5
  238. package/front_end/third_party/lighthouse/report-assets/report.css +0 -1774
  239. package/front_end/ui/legacy/components/perf_ui/module.json +0 -13
  240. package/front_end/ui/legacy/components/source_frame/SourcesTextEditor.ts +0 -1030
  241. package/front_end/ui/legacy/module.json +0 -41
@@ -632,6 +632,9 @@
632
632
  "core/sdk/sdk-meta.ts | doNotShowGridTrackSizes": {
633
633
  "message": "D̂ó n̂ót̂ śĥóŵ ǵr̂íd̂ t́r̂áĉḱ ŝíẑéŝ"
634
634
  },
635
+ "core/sdk/sdk-meta.ts | doNotShowRulersOnHover": {
636
+ "message": "D̂ó n̂ót̂ śĥóŵ ŕûĺêŕŝ ón̂ h́ôv́êŕ"
637
+ },
635
638
  "core/sdk/sdk-meta.ts | emulateAchromatopsia": {
636
639
  "message": "Êḿûĺât́ê áĉh́r̂óm̂át̂óp̂śîá"
637
640
  },
@@ -785,8 +788,8 @@
785
788
  "core/sdk/sdk-meta.ts | showPaintFlashingRectangles": {
786
789
  "message": "Ŝh́ôẃ p̂áîńt̂ f́l̂áŝh́îńĝ ŕêćt̂án̂ǵl̂éŝ"
787
790
  },
788
- "core/sdk/sdk-meta.ts | showRulers": {
789
- "message": "Ŝh́ôẃ r̂úl̂ér̂ś"
791
+ "core/sdk/sdk-meta.ts | showRulersOnHover": {
792
+ "message": "Ŝh́ôẃ r̂úl̂ér̂ś ôń ĥóv̂ér̂"
790
793
  },
791
794
  "core/sdk/sdk-meta.ts | showScrollPerformanceBottlenecks": {
792
795
  "message": "Ŝh́ôẃ ŝćr̂ól̂ĺ p̂ér̂f́ôŕm̂án̂ćê b́ôt́t̂ĺêńêćk̂ś"
@@ -4115,21 +4118,12 @@
4115
4118
  "panels/coverage/CoverageView.ts | urlFilter": {
4116
4119
  "message": "ÛŔL̂ f́îĺt̂ér̂"
4117
4120
  },
4118
- "panels/css_overview/components/CSSOverviewStartView.ts | activelyWorkingAndLookingForS": {
4119
- "message": "Ôúr̂ t́êám̂ íŝ áĉt́îv́êĺŷ ẃôŕk̂ín̂ǵ ôń t̂h́îś f̂éât́ûŕê án̂d́ ŵé âŕê ĺôók̂ín̂ǵ f̂ór̂ ýôúr̂ {PH1}!"
4120
- },
4121
4121
  "panels/css_overview/components/CSSOverviewStartView.ts | captureOverview": {
4122
4122
  "message": "Ĉáp̂t́ûŕê óv̂ér̂v́îéŵ"
4123
4123
  },
4124
4124
  "panels/css_overview/components/CSSOverviewStartView.ts | capturePageCSSOverview": {
4125
4125
  "message": "Ĉáp̂t́ûŕê án̂ óv̂ér̂v́îéŵ óf̂ ýôúr̂ ṕâǵê’ś ĈŚŜ"
4126
4126
  },
4127
- "panels/css_overview/components/CSSOverviewStartView.ts | feedbackInline": {
4128
- "message": "f̂éêd́b̂áĉḱ"
4129
- },
4130
- "panels/css_overview/components/CSSOverviewStartView.ts | feedbackStandalone": {
4131
- "message": "F̂éêd́b̂áĉḱ"
4132
- },
4133
4127
  "panels/css_overview/components/CSSOverviewStartView.ts | identifyCSSImprovements": {
4134
4128
  "message": "Îd́êńt̂íf̂ý p̂ót̂én̂t́îál̂ ĆŜŚ îḿp̂ŕôv́êḿêńt̂ś"
4135
4129
  },
@@ -4139,15 +4133,9 @@
4139
4133
  "panels/css_overview/components/CSSOverviewStartView.ts | locateAffectedElements": {
4140
4134
  "message": "L̂óĉát̂é t̂h́ê áf̂f́êćt̂éd̂ él̂ém̂én̂t́ŝ ín̂ t́ĥé Êĺêḿêńt̂ś p̂án̂él̂"
4141
4135
  },
4142
- "panels/css_overview/components/CSSOverviewStartView.ts | previewFeature": {
4143
- "message": "P̂ŕêv́îéŵ f́êát̂úr̂é"
4144
- },
4145
4136
  "panels/css_overview/components/CSSOverviewStartView.ts | quickStartWithCSSOverview": {
4146
4137
  "message": "Q̂úîćk̂ śt̂ár̂t́: ĝét̂ śt̂ár̂t́êd́ ŵít̂h́ t̂h́ê ńêẃ ĈŚŜ Óv̂ér̂v́îéŵ ṕâńêĺ"
4147
4138
  },
4148
- "panels/css_overview/components/CSSOverviewStartView.ts | videoAndDocumentation": {
4149
- "message": "V̂íd̂éô án̂d́ d̂óĉúm̂én̂t́ât́îón̂"
4150
- },
4151
4139
  "panels/css_overview/css_overview-meta.ts | cssOverview": {
4152
4140
  "message": "ĈŚŜ Óv̂ér̂v́îéŵ"
4153
4141
  },
@@ -4995,7 +4983,7 @@
4995
4983
  "message": "Ĥíd̂é m̂éd̂íâ q́ûér̂íêś"
4996
4984
  },
4997
4985
  "panels/emulation/emulation-meta.ts | hideRulers": {
4998
- "message": "Ĥíd̂é r̂úl̂ér̂ś"
4986
+ "message": "Ĥíd̂é r̂úl̂ér̂ś îń t̂h́ê D́êv́îćê Ḿôd́ê t́ôól̂b́âŕ"
4999
4987
  },
5000
4988
  "panels/emulation/emulation-meta.ts | showDeviceFrame": {
5001
4989
  "message": "Ŝh́ôẃ d̂év̂íĉé f̂ŕâḿê"
@@ -5004,7 +4992,7 @@
5004
4992
  "message": "Ŝh́ôẃ m̂éd̂íâ q́ûér̂íêś"
5005
4993
  },
5006
4994
  "panels/emulation/emulation-meta.ts | showRulers": {
5007
- "message": "Ŝh́ôẃ r̂úl̂ér̂ś"
4995
+ "message": "Ŝh́ôẃ r̂úl̂ér̂ś îń t̂h́ê D́êv́îćê Ḿôd́ê t́ôól̂b́âŕ"
5008
4996
  },
5009
4997
  "panels/emulation/emulation-meta.ts | toggleDeviceToolbar": {
5010
4998
  "message": "T̂óĝǵl̂é d̂év̂íĉé t̂óôĺb̂ár̂"
@@ -9437,6 +9425,15 @@
9437
9425
  "panels/sources/OutlineQuickOpen.ts | openAJavascriptOrCssFileToSee": {
9438
9426
  "message": "Ôṕêń â J́âv́âŚĉŕîṕt̂ ór̂ ĆŜŚ f̂íl̂é t̂ó ŝéê śŷḿb̂ól̂ś"
9439
9427
  },
9428
+ "panels/sources/ProfilePlugin.ts | kb": {
9429
+ "message": "k̂B́"
9430
+ },
9431
+ "panels/sources/ProfilePlugin.ts | mb": {
9432
+ "message": "M̂B́"
9433
+ },
9434
+ "panels/sources/ProfilePlugin.ts | ms": {
9435
+ "message": "m̂ś"
9436
+ },
9440
9437
  "panels/sources/ScopeChainSidebarPane.ts | closure": {
9441
9438
  "message": "Ĉĺôśûŕê"
9442
9439
  },
@@ -11453,6 +11450,21 @@
11453
11450
  "ui/components/linear_memory_inspector/ValueInterpreterSettings.ts | otherGroup": {
11454
11451
  "message": "Ôt́ĥér̂"
11455
11452
  },
11453
+ "ui/components/panel_feedback/FeedbackButton.ts | feedback": {
11454
+ "message": "F̂éêd́b̂áĉḱ"
11455
+ },
11456
+ "ui/components/panel_feedback/PanelFeedback.ts | previewFeature": {
11457
+ "message": "P̂ŕêv́îéŵ f́êát̂úr̂é"
11458
+ },
11459
+ "ui/components/panel_feedback/PanelFeedback.ts | previewText": {
11460
+ "message": "Ôúr̂ t́êám̂ íŝ áĉt́îv́êĺŷ ẃôŕk̂ín̂ǵ ôń t̂h́îś f̂éât́ûŕê án̂d́ ŵé ŵóûĺd̂ ĺôv́ê t́ô ḱn̂óŵ ẃĥát̂ ýôú t̂h́îńk̂."
11461
+ },
11462
+ "ui/components/panel_feedback/PanelFeedback.ts | previewTextFeedbackLink": {
11463
+ "message": "Ŝén̂d́ ûś ŷóûŕ f̂éêd́b̂áĉḱ."
11464
+ },
11465
+ "ui/components/panel_feedback/PanelFeedback.ts | videoAndDocumentation": {
11466
+ "message": "V̂íd̂éô án̂d́ d̂óĉúm̂én̂t́ât́îón̂"
11467
+ },
11456
11468
  "ui/components/request_link_icon/RequestLinkIcon.ts | clickToShowRequestInTheNetwork": {
11457
11469
  "message": "Ĉĺîćk̂ t́ô óp̂én̂ t́ĥé n̂ét̂ẃôŕk̂ ṕâńêĺ âńd̂ śĥóŵ ŕêq́ûéŝt́ f̂ór̂ ÚR̂Ĺ: {url}"
11458
11470
  },
@@ -11834,15 +11846,6 @@
11834
11846
  "ui/legacy/components/perf_ui/FlameChart.ts | sSelected": {
11835
11847
  "message": "{PH1} ŝél̂éĉt́êd́"
11836
11848
  },
11837
- "ui/legacy/components/perf_ui/LineLevelProfile.ts | kb": {
11838
- "message": "k̂B́"
11839
- },
11840
- "ui/legacy/components/perf_ui/LineLevelProfile.ts | mb": {
11841
- "message": "M̂B́"
11842
- },
11843
- "ui/legacy/components/perf_ui/LineLevelProfile.ts | ms": {
11844
- "message": "m̂ś"
11845
- },
11846
11849
  "ui/legacy/components/perf_ui/NetworkPriorities.ts | high": {
11847
11850
  "message": "Ĥíĝh́"
11848
11851
  },
@@ -815,20 +815,10 @@ export class DebuggerModel extends SDKModel<EventTypes> {
815
815
  }
816
816
 
817
817
  createRawLocationsByStackTrace(stackTrace: Protocol.Runtime.StackTrace): Location[] {
818
- const frames = [];
819
- let current: (Protocol.Runtime.StackTrace|undefined)|Protocol.Runtime.StackTrace = stackTrace;
820
- while (current) {
821
- for (const frame of current.callFrames) {
822
- frames.push(frame);
823
- }
824
- current = current.parent;
825
- }
826
-
827
- const rawLocations = [];
828
- for (const frame of frames) {
829
- const rawLocation = this.createRawLocationByScriptId(frame.scriptId, frame.lineNumber, frame.columnNumber);
830
- if (rawLocation) {
831
- rawLocations.push(rawLocation);
818
+ const rawLocations: Location[] = [];
819
+ for (let current: Protocol.Runtime.StackTrace|undefined = stackTrace; current; current = current.parent) {
820
+ for (const {scriptId, lineNumber, columnNumber} of current.callFrames) {
821
+ rawLocations.push(this.createRawLocationByScriptId(scriptId, lineNumber, columnNumber));
832
822
  }
833
823
  }
834
824
  return rawLocations;
@@ -43,9 +43,13 @@ const UIStrings = {
43
43
  */
44
44
  captureAsyncStackTraces: 'Capture async stack traces',
45
45
  /**
46
- *@description Text to show the measuring rulers on the target
46
+ *@description Text of a setting that turn on the measuring rulers when hover over a target
47
47
  */
48
- showRulers: 'Show rulers',
48
+ showRulersOnHover: 'Show rulers on hover',
49
+ /**
50
+ *@description Text of a setting that do turn off the measuring rulers when hover over a target
51
+ */
52
+ doNotShowRulersOnHover: 'Do not show rulers on hover',
49
53
  /**
50
54
  *@description Title of a setting that turns on grid area name labels
51
55
  */
@@ -436,9 +440,19 @@ Common.Settings.registerSettingExtension({
436
440
  Common.Settings.registerSettingExtension({
437
441
  category: Common.Settings.SettingCategory.ELEMENTS,
438
442
  storageType: Common.Settings.SettingStorageType.Synced,
439
- title: i18nLazyString(UIStrings.showRulers),
443
+ title: i18nLazyString(UIStrings.showRulersOnHover),
440
444
  settingName: 'showMetricsRulers',
441
445
  settingType: Common.Settings.SettingType.BOOLEAN,
446
+ options: [
447
+ {
448
+ value: true,
449
+ title: i18nLazyString(UIStrings.showRulersOnHover),
450
+ },
451
+ {
452
+ value: false,
453
+ title: i18nLazyString(UIStrings.doNotShowRulersOnHover),
454
+ },
455
+ ],
442
456
  defaultValue: false,
443
457
  });
444
458
 
@@ -1,6 +1,4 @@
1
1
  {
2
- "dependencies": [
3
- "panels/emulation"
4
- ],
2
+ "dependencies": [],
5
3
  "resources": []
6
4
  }
@@ -1,17 +1,9 @@
1
1
  {
2
2
  "modules" : [
3
- { "name": "panels/emulation", "type": "autostart" },
4
-
5
3
  { "name": "panels/lighthouse" },
6
4
  { "name": "emulated_devices" },
7
- { "name": "panels/issues" },
8
5
  { "name": "panels/layers" },
9
- { "name": "panels/layer_viewer" },
10
- { "name": "panels/network" },
11
- { "name": "panels/application" },
12
- { "name": "panels/security" },
13
- { "name": "panels/timeline" },
14
- { "name": "panels/media" }
6
+ { "name": "panels/timeline" }
15
7
  ],
16
8
  "extends": "shell"
17
9
  }
@@ -146,6 +146,7 @@ export class MainImpl {
146
146
  });
147
147
 
148
148
  console.timeStamp('Main._gotPreferences');
149
+ this.initializeGlobalsForLayoutTests();
149
150
  this.createSettings(prefs);
150
151
  await this.requestAndRegisterLocaleData();
151
152
 
@@ -157,6 +158,31 @@ export class MainImpl {
157
158
  this.createAppUI();
158
159
  }
159
160
 
161
+ private initializeGlobalsForLayoutTests(): void {
162
+ // @ts-ignore layout test global
163
+ self.Common = self.Common || {};
164
+ // @ts-ignore layout test global
165
+ self.UI = self.UI || {};
166
+ // @ts-ignore layout test global
167
+ self.UI.panels = self.UI.panels || {};
168
+ // @ts-ignore layout test global
169
+ self.SDK = self.SDK || {};
170
+ // @ts-ignore layout test global
171
+ self.Bindings = self.Bindings || {};
172
+ // @ts-ignore layout test global
173
+ self.Persistence = self.Persistence || {};
174
+ // @ts-ignore layout test global
175
+ self.Workspace = self.Workspace || {};
176
+ // @ts-ignore layout test global
177
+ self.Extensions = self.Extensions || {};
178
+ // @ts-ignore e2e test global
179
+ self.Host = self.Host || {};
180
+ // @ts-ignore e2e test global
181
+ self.Host.userMetrics = self.Host.userMetrics || Host.userMetrics;
182
+ // @ts-ignore e2e test global
183
+ self.Host.UserMetrics = self.Host.UserMetrics || Host.UserMetrics;
184
+ }
185
+
160
186
  async requestAndRegisterLocaleData(): Promise<void> {
161
187
  const settingLanguage = Common.Settings.Settings.instance().moduleSetting<string>('language').get();
162
188
  const devToolsLocale = i18n.DevToolsLocale.DevToolsLocale.instance({
@@ -6,18 +6,7 @@ import '../../Images/Images.js';
6
6
  import '../startup/startup.js';
7
7
  import '../../core/root/root-legacy.js';
8
8
  import '../../core/platform/platform.js';
9
- import '../../core/common/common-legacy.js';
10
- import '../../models/text_utils/text_utils-legacy.js';
11
9
  import '../../core/dom_extension/dom_extension.js';
12
- import '../../core/host/host-legacy.js';
13
- import '../../core/protocol_client/protocol_client-legacy.js';
14
- import '../../core/sdk/sdk-legacy.js';
15
- import '../../ui/legacy/legacy-legacy.js';
16
- import '../../models/workspace/workspace-legacy.js';
17
- import '../../models/bindings/bindings-legacy.js';
18
- import '../../ui/legacy/components/utils/utils-legacy.js';
19
- import '../../models/persistence/persistence-legacy.js';
20
- import '../../models/extensions/extensions-legacy.js';
21
10
 
22
11
  import './shell-meta-files.js';
23
12
  import '../main/main.js';
@@ -1,10 +1,8 @@
1
1
  {
2
2
  "modules": [
3
- { "name": "ui/legacy", "type": "autostart" },
4
3
  { "name": "ui/legacy/components/text_editor", "type": "autostart" },
5
4
  { "name": "ui/legacy/components/source_frame", "type": "autostart" },
6
5
 
7
- { "name": "ui/legacy/components/perf_ui" },
8
6
  { "name": "panels/profiler" }
9
7
  ]
10
8
  }
@@ -1,9 +1,5 @@
1
1
  {
2
2
  "modules" : [
3
- { "name": "panels/issues" },
4
- { "name": "panels/layer_viewer" },
5
- { "name": "panels/network" },
6
- { "name": "panels/application" },
7
3
  { "name": "panels/timeline" }
8
4
  ],
9
5
  "extends": "shell"
@@ -1970,6 +1970,7 @@ export function registerCommands(inspectorBackend) {
1970
1970
  ChUaModel: 'ch-ua-model',
1971
1971
  ChUaMobile: 'ch-ua-mobile',
1972
1972
  ChUaFullVersion: 'ch-ua-full-version',
1973
+ ChUaFullVersionList: 'ch-ua-full-version-list',
1973
1974
  ChUaPlatformVersion: 'ch-ua-platform-version',
1974
1975
  ChUaReduced: 'ch-ua-reduced',
1975
1976
  ChViewportHeight: 'ch-viewport-height',
@@ -4879,6 +4879,7 @@ declare namespace Protocol {
4879
4879
  export interface UserAgentMetadata {
4880
4880
  brands?: UserAgentBrandVersion[];
4881
4881
  fullVersion?: string;
4882
+ fullVersionList?: UserAgentBrandVersion[];
4882
4883
  platform: string;
4883
4884
  platformVersion: string;
4884
4885
  architecture: string;
@@ -9844,6 +9845,7 @@ declare namespace Protocol {
9844
9845
  ChUaModel = 'ch-ua-model',
9845
9846
  ChUaMobile = 'ch-ua-mobile',
9846
9847
  ChUaFullVersion = 'ch-ua-full-version',
9848
+ ChUaFullVersionList = 'ch-ua-full-version-list',
9847
9849
  ChUaPlatformVersion = 'ch-ua-platform-version',
9848
9850
  ChUaReduced = 'ch-ua-reduced',
9849
9851
  ChViewportHeight = 'ch-viewport-height',
@@ -25,3 +25,8 @@ declare module '*.css.js' {
25
25
  const styles: CSSStyleSheet;
26
26
  export default styles;
27
27
  }
28
+
29
+ declare module '*.css.legacy.js' {
30
+ const styles: {cssContent: string};
31
+ export default styles;
32
+ }
@@ -1,6 +1,7 @@
1
1
  // Copyright 2017 The Chromium Authors. All rights reserved.
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
+ import * as Common from '../../core/common/common.js';
4
5
 
5
6
  /**
6
7
  * @fileoverview using private properties isn't a Closure violation in tests.
@@ -52,8 +53,7 @@ BindingsTestRunner.TestFileSystem.prototype = {
52
53
 
53
54
  function created(event) {
54
55
  const fileSystem = event.data;
55
-
56
- if (fileSystem.path() !== fileSystemPath) {
56
+ if (fileSystem.path() !== Common.ParsedURL.ParsedURL.rawPathToUrlString(fileSystemPath)) {
57
57
  return;
58
58
  }
59
59
 
@@ -113,6 +113,14 @@ ConsoleTestRunner.prepareConsoleMessageText = function(messageElement) {
113
113
  return messageText;
114
114
  };
115
115
 
116
+ /**
117
+ * @param {!Element} messageElement
118
+ * @return {string}
119
+ */
120
+ ConsoleTestRunner.prepareConsoleMessageTextTrimmed = function(messageElement) {
121
+ return ConsoleTestRunner.prepareConsoleMessageText(messageElement).replace(/[ ]+/g, ' ');
122
+ };
123
+
116
124
  /**
117
125
  * @param {!Console.ConsoleViewMessage} viewMessage
118
126
  * @param {boolean} forceInvalidate
@@ -334,15 +342,19 @@ ConsoleTestRunner.dumpConsoleMessagesWithStyles = function() {
334
342
 
335
343
  /**
336
344
  * @param {boolean=} sortMessages
345
+ * @param {boolean=} trimMessages
337
346
  */
338
- ConsoleTestRunner.dumpConsoleMessagesWithClasses = async function(sortMessages) {
347
+ ConsoleTestRunner.dumpConsoleMessagesWithClasses = async function(sortMessages, trimMessages) {
339
348
  const result = [];
340
349
  const messageViews = Console.ConsoleView.instance().visibleViewMessages;
341
350
  for (let i = 0; i < messageViews.length; ++i) {
342
351
  const element = messageViews[i].element();
343
352
  const contentElement = messageViews[i].contentElement();
344
353
  await TestRunner.waitForPendingLiveLocationUpdates();
345
- const messageText = ConsoleTestRunner.prepareConsoleMessageText(element);
354
+ let messageText = ConsoleTestRunner.prepareConsoleMessageText(element);
355
+ if (trimMessages) {
356
+ messageText = messageText.replace(/[ ]+/g, ' ');
357
+ }
346
358
  result.push(messageText + ' ' + element.getAttribute('class') + ' > ' + contentElement.getAttribute('class'));
347
359
  }
348
360
  if (sortMessages) {
@@ -2,6 +2,16 @@
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
5
+ import '../core/common/common-legacy.js';
6
+ import '../models/text_utils/text_utils-legacy.js';
7
+ import '../core/host/host-legacy.js';
8
+ import '../core/protocol_client/protocol_client-legacy.js';
9
+ import '../ui/legacy/legacy-legacy.js';
10
+ import '../models/workspace/workspace-legacy.js';
11
+ import '../models/bindings/bindings-legacy.js';
12
+ import '../ui/legacy/components/utils/utils-legacy.js';
13
+ import '../models/persistence/persistence-legacy.js';
14
+ import '../models/extensions/extensions-legacy.js';
5
15
  import '../entrypoints/devtools_app/devtools_app.js';
6
16
  import '../panels/accessibility/accessibility-legacy.js';
7
17
  import '../panels/animation/animation-legacy.js';
@@ -12,7 +22,6 @@ import '../ui/legacy/components/data_grid/data_grid-legacy.js';
12
22
  import '../third_party/diff/diff-legacy.js';
13
23
  import '../models/extensions/extensions-legacy.js';
14
24
  import '../models/formatter/formatter-legacy.js';
15
- import '../core/host/host-legacy.js';
16
25
  import '../ui/legacy/components/inline_editor/inline_editor-legacy.js';
17
26
  import '../core/root/root-legacy.js';
18
27
  import '../core/sdk/sdk-legacy.js';
@@ -393,6 +393,16 @@ export function textContentWithLineBreaks(node) {
393
393
  return buffer;
394
394
  }
395
395
 
396
+ /**
397
+ * @param {!Node} node
398
+ * @return {string}
399
+ */
400
+ export function textContentWithLineBreaksTrimmed(node) {
401
+ // We want to allow single empty lines (2 white space characters), but
402
+ // compress occurences of 3 or more whitespaces.
403
+ return textContentWithLineBreaks(node).replace(/\s{3,}/g, ' ');
404
+ }
405
+
396
406
  /**
397
407
  * @param {!Node} node
398
408
  * @return {string}
@@ -1459,6 +1469,7 @@ TestRunner.showPanel = showPanel;
1459
1469
  TestRunner.createKeyEvent = createKeyEvent;
1460
1470
  TestRunner.safeWrap = safeWrap;
1461
1471
  TestRunner.textContentWithLineBreaks = textContentWithLineBreaks;
1472
+ TestRunner.textContentWithLineBreaksTrimmed = textContentWithLineBreaksTrimmed;
1462
1473
  TestRunner.textContentWithoutStyles = textContentWithoutStyles;
1463
1474
  TestRunner.evaluateInPagePromise = evaluateInPagePromise;
1464
1475
  TestRunner.callFunctionInPageAsync = callFunctionInPageAsync;
@@ -142,16 +142,6 @@ export class SourceFormatter {
142
142
  await this.scriptMapping.setSourceMappingEnabled(formatData, true);
143
143
  await this.styleMapping.setSourceMappingEnabled(formatData, true);
144
144
  cacheEntry.formatData = formatData;
145
-
146
- for (const decoration of uiSourceCode.allDecorations()) {
147
- const range = decoration.range();
148
- const startLocation = formattedMapping.originalToFormatted(range.startLine, range.startColumn);
149
- const endLocation = formattedMapping.originalToFormatted(range.endLine, range.endColumn);
150
- formattedUISourceCode.addDecoration(
151
- new TextUtils.TextRange.TextRange(startLocation[0], startLocation[1], endLocation[0], endLocation[1]),
152
- (decoration.type() as string), decoration.data());
153
- }
154
-
155
145
  resolve(formatData);
156
146
  } catch (e) {
157
147
  reject(e);
@@ -60,7 +60,7 @@ export class UISourceCode extends Common.ObjectWrapper.ObjectWrapper<EventTypes>
60
60
  private nameInternal: string;
61
61
  private contentTypeInternal: Common.ResourceType.ResourceType;
62
62
  private requestContentPromise: Promise<TextUtils.ContentProvider.DeferredContent>|null;
63
- private decorations: Platform.MapUtilities.Multimap<string, LineMarker>|null;
63
+ private decorations: Map<string, any> = new Map();
64
64
  private hasCommitsInternal: boolean;
65
65
  private messagesInternal: Set<Message>|null;
66
66
  private contentLoadedInternal: boolean;
@@ -94,7 +94,6 @@ export class UISourceCode extends Common.ObjectWrapper.ObjectWrapper<EventTypes>
94
94
 
95
95
  this.contentTypeInternal = contentType;
96
96
  this.requestContentPromise = null;
97
- this.decorations = null;
98
97
  this.hasCommitsInternal = false;
99
98
  this.messagesInternal = null;
100
99
  this.contentLoadedInternal = false;
@@ -455,45 +454,15 @@ export class UISourceCode extends Common.ObjectWrapper.ObjectWrapper<EventTypes>
455
454
  this.messagesInternal = null;
456
455
  }
457
456
 
458
- addLineDecoration(lineNumber: number, type: string, data: any): void {
459
- this.addDecoration(TextUtils.TextRange.TextRange.createFromLocation(lineNumber, 0), type, data);
460
- }
461
-
462
- addDecoration(range: TextUtils.TextRange.TextRange, type: string, data: any): void {
463
- const marker = new LineMarker(range, type, data);
464
- if (!this.decorations) {
465
- this.decorations = new Platform.MapUtilities.Multimap();
466
- }
467
- this.decorations.set(type, marker);
468
- this.dispatchEventToListeners(Events.LineDecorationAdded, marker);
469
- }
470
-
471
- removeDecorationsForType(type: string): void {
472
- if (!this.decorations) {
473
- return;
474
- }
475
- const markers = this.decorations.get(type);
476
- this.decorations.deleteAll(type);
477
- markers.forEach(marker => {
478
- this.dispatchEventToListeners(Events.LineDecorationRemoved, marker);
479
- });
480
- }
481
-
482
- allDecorations(): LineMarker[] {
483
- return this.decorations ? this.decorations.valuesArray() : [];
484
- }
485
-
486
- removeAllDecorations(): void {
487
- if (!this.decorations) {
488
- return;
457
+ setDecorationData(type: string, data: any): void {
458
+ if (data !== this.decorations.get(type)) {
459
+ this.decorations.set(type, data);
460
+ this.dispatchEventToListeners(Events.DecorationChanged, type);
489
461
  }
490
- const decorationList = this.decorations.valuesArray();
491
- this.decorations.clear();
492
- decorationList.forEach(marker => this.dispatchEventToListeners(Events.LineDecorationRemoved, marker));
493
462
  }
494
463
 
495
- decorationsForType(type: string): Set<LineMarker>|null {
496
- return this.decorations ? this.decorations.get(type) : null;
464
+ getDecorationData(type: string): any {
465
+ return this.decorations.get(type);
497
466
  }
498
467
 
499
468
  disableEdit(): void {
@@ -513,8 +482,7 @@ export enum Events {
513
482
  TitleChanged = 'TitleChanged',
514
483
  MessageAdded = 'MessageAdded',
515
484
  MessageRemoved = 'MessageRemoved',
516
- LineDecorationAdded = 'LineDecorationAdded',
517
- LineDecorationRemoved = 'LineDecorationRemoved',
485
+ DecorationChanged = 'DecorationChanged',
518
486
  }
519
487
 
520
488
  export interface WorkingCopyCommitedEvent {
@@ -529,8 +497,7 @@ export type EventTypes = {
529
497
  [Events.TitleChanged]: UISourceCode,
530
498
  [Events.MessageAdded]: Message,
531
499
  [Events.MessageRemoved]: Message,
532
- [Events.LineDecorationAdded]: LineMarker,
533
- [Events.LineDecorationRemoved]: LineMarker,
500
+ [Events.DecorationChanged]: string,
534
501
  };
535
502
 
536
503
  export class UILocation {
@@ -438,9 +438,6 @@ export class AnimationTimeline extends UI.Widget.VBox implements SDK.TargetManag
438
438
  }
439
439
 
440
440
  private togglePause(pause: boolean): void {
441
- if (this.#scrubberPlayer) {
442
- this.#scrubberPlayer.playbackRate = this.effectivePlaybackRate();
443
- }
444
441
  if (this.#selectedGroup) {
445
442
  this.#selectedGroup.togglePause(pause);
446
443
  const preview = this.#previewMap.get(this.#selectedGroup);
@@ -448,6 +445,9 @@ export class AnimationTimeline extends UI.Widget.VBox implements SDK.TargetManag
448
445
  preview.element.classList.toggle('paused', pause);
449
446
  }
450
447
  }
448
+ if (this.#scrubberPlayer) {
449
+ this.#scrubberPlayer.playbackRate = this.effectivePlaybackRate();
450
+ }
451
451
  this.updateControlButton();
452
452
  }
453
453
 
@@ -1970,13 +1970,13 @@ export class FrameResourceTreeElement extends ApplicationPanelTreeElement {
1970
1970
  contextMenu.show();
1971
1971
  }
1972
1972
 
1973
- async revealResource(line?: number, column?: number): Promise<void> {
1973
+ async revealResource(lineNumber?: number, columnNumber?: number): Promise<void> {
1974
1974
  this.revealAndSelect(true);
1975
1975
  const view = await this.panel.scheduleShowView(this.preparePreview());
1976
- if (!(view instanceof SourceFrame.ResourceSourceFrame.ResourceSourceFrame) || typeof line !== 'number') {
1976
+ if (!(view instanceof SourceFrame.ResourceSourceFrame.ResourceSourceFrame) || typeof lineNumber !== 'number') {
1977
1977
  return;
1978
1978
  }
1979
- view.revealPosition(line, column, true);
1979
+ view.revealPosition({lineNumber, columnNumber}, true);
1980
1980
  }
1981
1981
  }
1982
1982
 
@@ -3,7 +3,6 @@
3
3
  // found in the LICENSE file.
4
4
 
5
5
  import * as Common from '../../core/common/common.js';
6
- import * as Root from '../../core/root/root.js';
7
6
  import * as SDK from '../../core/sdk/sdk.js';
8
7
  import * as UI from '../../ui/legacy/legacy.js';
9
8
 
@@ -47,8 +46,6 @@ let loadedResourcesModule: (typeof Resources|undefined);
47
46
 
48
47
  async function loadResourcesModule(): Promise<typeof Resources> {
49
48
  if (!loadedResourcesModule) {
50
- // Side-effect import resources in module.json
51
- await Root.Runtime.Runtime.instance().loadModulePromise('panels/application');
52
49
  loadedResourcesModule = await import('./application.js');
53
50
  }
54
51
  return loadedResourcesModule;
@@ -36,7 +36,7 @@ export class EndpointsGrid extends HTMLElement {
36
36
  // clang-format off
37
37
  render(html`
38
38
  <div class="reporting-container">
39
- <div class="reporting-header">Endpoints</div>
39
+ <div class="reporting-header">${i18n.i18n.lockedString('Endpoints')}</div>
40
40
  <div class="reporting-placeholder">
41
41
  <div>${i18nString(UIStrings.noEndpointsToDisplay)}</div>
42
42
  </div>
@@ -136,7 +136,7 @@ export class ReportsGrid extends HTMLElement {
136
136
  // clang-format off
137
137
  render(html`
138
138
  <div class="reporting-container">
139
- <div class="reporting-header">Reports</div>
139
+ <div class="reporting-header">${i18n.i18n.lockedString('Reports')}</div>
140
140
  ${this.reports.length > 0 ? html`
141
141
  <${DataGrid.DataGridController.DataGridController.litTagName} .data=${
142
142
  reportsGridData as DataGrid.DataGridController.DataGridControllerData}>