chrome-devtools-frontend 1.0.946351 → 1.0.948359
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/.eslintrc.js +1 -0
- package/config/gni/all_devtools_files.gni +1 -15
- package/config/gni/devtools_grd_files.gni +9 -15
- package/config/gni/devtools_image_files.gni +1 -0
- package/front_end/.eslintrc.js +6 -1
- package/front_end/Images/src/circled_backslash_icon.svg +3 -0
- package/front_end/core/host/InspectorFrontendHost.ts +0 -3
- package/front_end/core/host/InspectorFrontendHostAPI.ts +0 -1
- package/front_end/core/host/UserMetrics.ts +1 -22
- package/front_end/core/i18n/locales/en-US.json +38 -29
- package/front_end/core/i18n/locales/en-XL.json +38 -29
- package/front_end/core/platform/platform.ts +0 -2
- package/front_end/core/platform/string-utilities.ts +14 -1
- package/front_end/core/platform/utilities.ts +0 -29
- package/front_end/core/root/Runtime.ts +4 -211
- package/front_end/core/sdk/AccessibilityModel.ts +0 -2
- package/front_end/core/sdk/CSSProperty.ts +0 -2
- package/front_end/core/sdk/CSSRule.ts +0 -2
- package/front_end/core/sdk/Cookie.ts +0 -25
- package/front_end/core/sdk/EmulationModel.ts +0 -2
- package/front_end/core/sdk/HeapProfilerModel.ts +0 -2
- package/front_end/core/sdk/NetworkManager.ts +0 -3
- package/front_end/core/sdk/Resource.ts +0 -3
- package/front_end/core/sdk/ResourceTreeModel.ts +0 -3
- package/front_end/core/sdk/ServiceWorkerManager.ts +0 -2
- package/front_end/core/sdk/sdk-legacy.ts +0 -3
- package/front_end/devtools_compatibility.js +1 -1
- package/front_end/entrypoints/devtools_app/{devtools_app-meta-files.ts → devtools_app.ts} +9 -2
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +2 -1
- package/front_end/entrypoints/inspector/{inspector.js → inspector.ts} +0 -3
- package/front_end/entrypoints/js_app/{JsMain.ts → js_app.ts} +5 -1
- package/front_end/entrypoints/main/MainImpl.ts +0 -1
- package/front_end/entrypoints/ndb_app/{ndb_app.js → ndb_app.ts} +0 -2
- package/front_end/entrypoints/{node_main → node_app}/NodeConnectionsPanel.ts +1 -1
- package/front_end/entrypoints/{node_main → node_app}/NodeMain.ts +2 -4
- package/front_end/entrypoints/{node_main → node_app}/nodeConnectionsPanel.css +0 -0
- package/front_end/entrypoints/node_app/node_app.ts +79 -0
- package/front_end/entrypoints/shell/{shell.js → shell.ts} +0 -2
- package/front_end/entrypoints/worker_app/{worker_app.js → worker_app.ts} +3 -2
- package/front_end/generated/InspectorBackendCommands.js +5 -1
- package/front_end/generated/protocol.d.ts +12 -0
- package/front_end/legacy/legacy-defs.d.ts +0 -4
- package/front_end/legacy_test_runner/test_runner/TestRunner.js +35 -59
- package/front_end/models/bindings/CompilerScriptMapping.ts +0 -1
- package/front_end/models/bindings/DebuggerLanguagePlugins.ts +4 -11
- package/front_end/models/bindings/SASSSourceMapping.ts +0 -1
- package/front_end/models/emulation/DeviceModeModel.ts +0 -2
- package/front_end/models/issues_manager/CorsIssue.ts +17 -9
- package/front_end/models/issues_manager/descriptions/{corsInsecurePrivateNetworkPreflight.md → corsPreflightAllowPrivateNetworkError.md} +1 -1
- package/front_end/panels/accessibility/AccessibilitySidebarView.ts +3 -1
- package/front_end/panels/animation/AnimationTimeline.ts +0 -2
- package/front_end/panels/animation/AnimationUI.ts +0 -2
- package/front_end/panels/application/BackForwardCacheStrings.ts +2 -5
- package/front_end/panels/application/BackForwardCacheView.ts +150 -58
- package/front_end/panels/application/ResourcesPanel.ts +0 -42
- package/front_end/panels/application/application-legacy.ts +0 -3
- package/front_end/panels/application/application-meta.ts +0 -13
- package/front_end/panels/application/backForwardCacheView.css +44 -6
- package/front_end/panels/application/components/FrameDetailsView.ts +3 -3
- package/front_end/panels/application/components/OriginTrialTreeView.ts +3 -3
- package/front_end/panels/application/components/StackTrace.ts +1 -1
- package/front_end/panels/coverage/CoverageView.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewModel.ts +0 -2
- package/front_end/panels/css_overview/CSSOverviewPanel.ts +0 -7
- package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +0 -2
- package/front_end/panels/css_overview/components/cssOverviewStartView.css +1 -0
- package/front_end/panels/css_overview/cssOverviewCompletedView.css +1 -1
- package/front_end/panels/developer_resources/DeveloperResourcesView.ts +2 -1
- package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +0 -11
- package/front_end/panels/elements/ElementsPanel.ts +9 -1
- package/front_end/panels/elements/ElementsTreeElement.ts +1 -1
- package/front_end/panels/elements/StylesSidebarPane.ts +0 -1
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +1 -1
- package/front_end/panels/emulation/DeviceModeToolbar.ts +0 -16
- package/front_end/panels/issues/CorsIssueDetailsView.ts +18 -2
- package/front_end/panels/lighthouse/lighthouse-meta.ts +0 -3
- package/front_end/panels/network/NetworkWaterfallColumn.ts +2 -0
- package/front_end/panels/profiler/CPUProfileFlameChart.ts +3 -1
- package/front_end/panels/profiler/ProfileDataGrid.ts +2 -1
- package/front_end/panels/search/SearchView.ts +24 -4
- package/front_end/panels/settings/components/SyncSection.ts +2 -2
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +46 -46
- package/front_end/panels/sources/CSSPlugin.ts +3 -0
- package/front_end/panels/sources/CoveragePlugin.ts +2 -0
- package/front_end/panels/sources/DebuggerPlugin.ts +29 -5
- package/front_end/panels/sources/JavaScriptCompilerPlugin.ts +3 -0
- package/front_end/panels/sources/ProfilePlugin.ts +3 -0
- package/front_end/panels/sources/UISourceCodeFrame.ts +11 -2
- package/front_end/panels/timeline/TimelineTreeView.ts +3 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/java.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/json.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/php.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/python.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/wast.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/xml.js +1 -2
- package/front_end/third_party/codemirror.next/codemirror.next.d.ts +1486 -1423
- package/front_end/third_party/codemirror.next/codemirror.next.js +1 -2
- package/front_end/third_party/codemirror.next/package.json +10 -9
- package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +168 -164
- package/front_end/third_party/lighthouse/locales/ar-XB.json +0 -3
- package/front_end/third_party/lighthouse/locales/ar.json +0 -3
- package/front_end/third_party/lighthouse/locales/bg.json +17 -20
- package/front_end/third_party/lighthouse/locales/ca.json +0 -3
- package/front_end/third_party/lighthouse/locales/cs.json +0 -3
- package/front_end/third_party/lighthouse/locales/da.json +16 -19
- package/front_end/third_party/lighthouse/locales/de.json +0 -3
- package/front_end/third_party/lighthouse/locales/el.json +0 -3
- package/front_end/third_party/lighthouse/locales/en-GB.json +19 -22
- package/front_end/third_party/lighthouse/locales/en-US.json +33 -3
- package/front_end/third_party/lighthouse/locales/en-XA.json +0 -3
- package/front_end/third_party/lighthouse/locales/en-XL.json +33 -3
- package/front_end/third_party/lighthouse/locales/es-419.json +17 -20
- package/front_end/third_party/lighthouse/locales/es.json +0 -3
- package/front_end/third_party/lighthouse/locales/fi.json +16 -19
- package/front_end/third_party/lighthouse/locales/fil.json +33 -36
- package/front_end/third_party/lighthouse/locales/fr.json +16 -19
- package/front_end/third_party/lighthouse/locales/he.json +16 -19
- package/front_end/third_party/lighthouse/locales/hi.json +0 -3
- package/front_end/third_party/lighthouse/locales/hr.json +16 -19
- package/front_end/third_party/lighthouse/locales/hu.json +16 -19
- package/front_end/third_party/lighthouse/locales/id.json +16 -19
- package/front_end/third_party/lighthouse/locales/it.json +37 -40
- package/front_end/third_party/lighthouse/locales/ja.json +16 -19
- package/front_end/third_party/lighthouse/locales/ko.json +16 -19
- package/front_end/third_party/lighthouse/locales/lt.json +17 -20
- package/front_end/third_party/lighthouse/locales/lv.json +0 -3
- package/front_end/third_party/lighthouse/locales/nl.json +16 -19
- package/front_end/third_party/lighthouse/locales/no.json +17 -20
- package/front_end/third_party/lighthouse/locales/pl.json +16 -19
- package/front_end/third_party/lighthouse/locales/pt-PT.json +37 -40
- package/front_end/third_party/lighthouse/locales/pt.json +16 -19
- package/front_end/third_party/lighthouse/locales/ro.json +0 -3
- package/front_end/third_party/lighthouse/locales/ru.json +16 -19
- package/front_end/third_party/lighthouse/locales/sk.json +0 -3
- package/front_end/third_party/lighthouse/locales/sl.json +0 -3
- package/front_end/third_party/lighthouse/locales/sr-Latn.json +16 -19
- package/front_end/third_party/lighthouse/locales/sr.json +16 -19
- package/front_end/third_party/lighthouse/locales/sv.json +17 -20
- package/front_end/third_party/lighthouse/locales/ta.json +0 -3
- package/front_end/third_party/lighthouse/locales/te.json +0 -3
- package/front_end/third_party/lighthouse/locales/th.json +0 -3
- package/front_end/third_party/lighthouse/locales/tr.json +0 -3
- package/front_end/third_party/lighthouse/locales/uk.json +17 -20
- package/front_end/third_party/lighthouse/locales/vi.json +0 -3
- package/front_end/third_party/lighthouse/locales/zh-HK.json +0 -3
- package/front_end/third_party/lighthouse/locales/zh-TW.json +0 -3
- package/front_end/third_party/lighthouse/locales/zh.json +0 -3
- package/front_end/third_party/lighthouse/report/bundle.d.ts +63 -61
- package/front_end/third_party/lighthouse/report/bundle.js +36 -7
- package/front_end/third_party/lighthouse/report-assets/report-generator.js +205 -192
- package/front_end/ui/components/diff_view/DiffView.ts +4 -4
- package/front_end/ui/components/helpers/component-server-setup.ts +1 -12
- package/front_end/ui/components/helpers/helpers.ts +0 -2
- package/front_end/ui/components/icon_button/IconButton.ts +1 -1
- package/front_end/ui/components/issue_counter/IssueCounter.ts +2 -2
- package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +3 -3
- package/front_end/ui/components/markdown_view/MarkdownView.ts +4 -4
- package/front_end/ui/components/panel_feedback/PreviewToggle.ts +98 -0
- package/front_end/ui/components/panel_feedback/panel_feedback.ts +1 -0
- package/front_end/ui/components/panel_feedback/previewToggle.css +24 -0
- package/front_end/ui/components/report_view/ReportView.ts +22 -0
- package/front_end/ui/components/report_view/reportSection.css +20 -0
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +1 -1
- package/front_end/ui/components/settings/SettingCheckbox.ts +2 -2
- package/front_end/ui/components/text_editor/config.ts +9 -7
- package/front_end/ui/components/text_editor/javascript.ts +15 -11
- package/front_end/ui/components/text_prompt/TextPrompt.ts +2 -2
- package/front_end/ui/legacy/GlassPane.ts +1 -1
- package/front_end/ui/legacy/InspectorView.ts +10 -0
- package/front_end/ui/legacy/SearchableView.ts +2 -1
- package/front_end/ui/legacy/Treeoutline.ts +1 -1
- package/front_end/ui/legacy/Widget.ts +1 -1
- package/front_end/ui/legacy/XWidget.ts +0 -5
- package/front_end/ui/legacy/components/inline_editor/CSSVarSwatch.ts +2 -2
- package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +40 -32
- package/front_end/ui/legacy/themeColors.css +1 -1
- package/front_end/ui/legacy/utils/append-style.ts +2 -13
- package/front_end/ui/legacy/utils/create-shadow-root-with-core-styles.ts +7 -5
- package/inspector_overlay/main.ts +2 -12
- package/package.json +2 -4
- package/scripts/build/build_inspector_overlay.py +15 -1
- package/scripts/build/rjsmin.py +84 -115
- package/scripts/eslint_rules/lib/l10n_filename_matches.js +4 -4
- package/scripts/eslint_rules/lib/lit_html_no_attribute_quotes.js +101 -0
- package/scripts/eslint_rules/lib/no_only_eslint_tests.js +53 -0
- package/scripts/eslint_rules/tests/.eslintrc.js +14 -0
- package/scripts/eslint_rules/tests/l10n_filename_matches_test.js +4 -0
- package/scripts/eslint_rules/tests/lit_html_no_attribute_quotes_test.js +45 -0
- package/scripts/eslint_rules/tests/no_only_eslint_tests_test.js +94 -0
- package/front_end/entrypoints/devtools_app/devtools_app.js +0 -11
- package/front_end/entrypoints/devtools_app/devtools_app.json +0 -5
- package/front_end/entrypoints/inspector/inspector.json +0 -4
- package/front_end/entrypoints/js_app/js_app.js +0 -12
- package/front_end/entrypoints/js_app/js_app.json +0 -3
- package/front_end/entrypoints/ndb_app/ndb_app.json +0 -4
- package/front_end/entrypoints/node_app/node_app-meta.ts +0 -43
- package/front_end/entrypoints/node_app/node_app.js +0 -16
- package/front_end/entrypoints/node_app/node_app.json +0 -3
- package/front_end/entrypoints/node_main/node_main-meta.ts +0 -48
- package/front_end/entrypoints/node_main/node_main.ts +0 -11
- package/front_end/entrypoints/startup/RuntimeInstantiator.ts +0 -95
- package/front_end/entrypoints/startup/startup.ts +0 -9
- package/front_end/entrypoints/worker_app/worker_app.json +0 -3
- package/front_end/panels/lighthouse/module.json +0 -6
- package/front_end/third_party/lighthouse/report-assets/report.d.ts +0 -1
- package/front_end/third_party/lighthouse/report-assets/report.js +0 -233
- package/front_end/third_party/lighthouse/report-assets/standalone-template.html +0 -38
- package/front_end/ui/components/helpers/get-stylesheet.ts +0 -45
- package/scripts/build/build_release_applications.py +0 -216
- package/scripts/build/modular_build.py +0 -184
- package/scripts/check_gn.js +0 -119
- package/scripts/json_validator/module.schema.json +0 -19
- package/scripts/json_validator/validate_module_json.js +0 -44
package/.eslintrc.js
CHANGED
|
@@ -106,6 +106,7 @@ module.exports = {
|
|
|
106
106
|
|
|
107
107
|
// no-implicit-globals will prevent accidental globals
|
|
108
108
|
'no-implicit-globals': [0],
|
|
109
|
+
'no-unused-private-class-members': 2,
|
|
109
110
|
|
|
110
111
|
// forbids interfaces starting with an I prefix.
|
|
111
112
|
'@typescript-eslint/naming-convention':
|
|
@@ -5,13 +5,6 @@
|
|
|
5
5
|
import("../../scripts/build/ninja/vars.gni")
|
|
6
6
|
|
|
7
7
|
all_devtools_files = [
|
|
8
|
-
"front_end/entrypoints/shell/shell.js",
|
|
9
|
-
"front_end/entrypoints/devtools_app/devtools_app.js",
|
|
10
|
-
"front_end/entrypoints/inspector/inspector.js",
|
|
11
|
-
"front_end/entrypoints/js_app/js_app.js",
|
|
12
|
-
"front_end/entrypoints/ndb_app/ndb_app.js",
|
|
13
|
-
"front_end/entrypoints/node_app/node_app.js",
|
|
14
|
-
"front_end/entrypoints/worker_app/worker_app.js",
|
|
15
8
|
"front_end/legacy_test_runner/accessibility_test_runner/accessibility_test_runner.js",
|
|
16
9
|
"front_end/legacy_test_runner/application_test_runner/application_test_runner.js",
|
|
17
10
|
"front_end/legacy_test_runner/bindings_test_runner/bindings_test_runner.js",
|
|
@@ -22,7 +15,6 @@ all_devtools_files = [
|
|
|
22
15
|
"front_end/legacy_test_runner/application_test_runner/ServiceWorkersTestRunner.js",
|
|
23
16
|
"front_end/legacy_test_runner/application_test_runner/StorageTestRunner.js",
|
|
24
17
|
"front_end/legacy_test_runner/lighthouse_test_runner/lighthouse_test_runner.js",
|
|
25
|
-
"front_end/panels/lighthouse/module.json",
|
|
26
18
|
"front_end/legacy_test_runner/axe_core_test_runner/axe_core_test_runner.js",
|
|
27
19
|
"front_end/third_party/axe-core/axe.js",
|
|
28
20
|
"front_end/legacy_test_runner/bindings_test_runner/AutomappingTestRunner.js",
|
|
@@ -45,12 +37,8 @@ all_devtools_files = [
|
|
|
45
37
|
"front_end/legacy_test_runner/extensions_test_runner/ExtensionsNetworkTestRunner.js",
|
|
46
38
|
"front_end/legacy_test_runner/extensions_test_runner/ExtensionsTestRunner.js",
|
|
47
39
|
"front_end/legacy_test_runner/heap_profiler_test_runner/heap_profiler_test_runner.js",
|
|
48
|
-
"front_end/entrypoints/inspector/inspector.js",
|
|
49
|
-
"front_end/entrypoints/inspector/inspector.json",
|
|
50
40
|
"front_end/legacy_test_runner/layers_test_runner/layers_test_runner.js",
|
|
51
|
-
"front_end/entrypoints/ndb_app/ndb_app.json",
|
|
52
41
|
"front_end/legacy_test_runner/network_test_runner/network_test_runner.js",
|
|
53
|
-
"front_end/entrypoints/node_main/nodeConnectionsPanel.css",
|
|
54
42
|
"front_end/legacy_test_runner/performance_test_runner/performance_test_runner.js",
|
|
55
43
|
"front_end/legacy_test_runner/performance_test_runner/TimelineDataTestRunner.js",
|
|
56
44
|
"front_end/legacy_test_runner/performance_test_runner/TimelineTestRunner.js",
|
|
@@ -92,7 +80,7 @@ all_devtools_files = [
|
|
|
92
80
|
"front_end/models/issues_manager/descriptions/mixedContent.md",
|
|
93
81
|
"front_end/models/issues_manager/descriptions/sharedArrayBuffer.md",
|
|
94
82
|
"front_end/models/issues_manager/descriptions/corsInsecurePrivateNetwork.md",
|
|
95
|
-
"front_end/models/issues_manager/descriptions/
|
|
83
|
+
"front_end/models/issues_manager/descriptions/corsPreflightAllowPrivateNetworkError.md",
|
|
96
84
|
"front_end/models/issues_manager/descriptions/SameSiteExcludeContextDowngradeRead.md",
|
|
97
85
|
"front_end/models/issues_manager/descriptions/SameSiteExcludeContextDowngradeSet.md",
|
|
98
86
|
"front_end/models/issues_manager/descriptions/SameSiteExcludeNavigationContextDowngrade.md",
|
|
@@ -120,8 +108,6 @@ all_devtools_files = [
|
|
|
120
108
|
"front_end/legacy_test_runner/sources_test_runner/LiveEditTestRunner.js",
|
|
121
109
|
"front_end/legacy_test_runner/sources_test_runner/SearchTestRunner.js",
|
|
122
110
|
"front_end/legacy_test_runner/sources_test_runner/SourcesTestRunner.js",
|
|
123
|
-
"front_end/third_party/lighthouse/report-assets/report.js",
|
|
124
|
-
"front_end/third_party/lighthouse/report-assets/standalone-template.html",
|
|
125
111
|
]
|
|
126
112
|
|
|
127
113
|
lighthouse_locale_files = [
|
|
@@ -45,6 +45,7 @@ grd_files_release_sources = [
|
|
|
45
45
|
"front_end/Images/chromeRight.avif",
|
|
46
46
|
"front_end/Images/chromeSelect.svg",
|
|
47
47
|
"front_end/Images/chromeSelectDark.svg",
|
|
48
|
+
"front_end/Images/circled_backslash_icon.svg",
|
|
48
49
|
"front_end/Images/circled_exclamation_icon.svg",
|
|
49
50
|
"front_end/Images/close-icon.svg",
|
|
50
51
|
"front_end/Images/copy_icon.svg",
|
|
@@ -204,7 +205,6 @@ grd_files_release_sources = [
|
|
|
204
205
|
"front_end/emulated_devices/optimized/iPhone6Plus-landscape.avif",
|
|
205
206
|
"front_end/emulated_devices/optimized/iPhone6Plus-portrait.avif",
|
|
206
207
|
"front_end/entrypoints/device_mode_emulation_frame/device_mode_emulation_frame.js",
|
|
207
|
-
"front_end/entrypoints/devtools_app/devtools_app-meta-files.js",
|
|
208
208
|
"front_end/entrypoints/devtools_app/devtools_app.js",
|
|
209
209
|
"front_end/entrypoints/formatter_worker/FormatterActions.js",
|
|
210
210
|
"front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.js",
|
|
@@ -215,22 +215,16 @@ grd_files_release_sources = [
|
|
|
215
215
|
"front_end/entrypoints/inspector/inspector.js",
|
|
216
216
|
"front_end/entrypoints/inspector_main/inspector_main-meta.js",
|
|
217
217
|
"front_end/entrypoints/inspector_main/inspector_main.js",
|
|
218
|
-
"front_end/entrypoints/js_app/JsMain.js",
|
|
219
218
|
"front_end/entrypoints/js_app/js_app.js",
|
|
220
219
|
"front_end/entrypoints/lighthouse_worker/lighthouse_worker.js",
|
|
221
220
|
"front_end/entrypoints/main/main-legacy.js",
|
|
222
221
|
"front_end/entrypoints/main/main-meta.js",
|
|
223
222
|
"front_end/entrypoints/main/main.js",
|
|
224
223
|
"front_end/entrypoints/ndb_app/ndb_app.js",
|
|
225
|
-
"front_end/entrypoints/node_app/node_app-meta.js",
|
|
226
224
|
"front_end/entrypoints/node_app/node_app.js",
|
|
227
|
-
"front_end/entrypoints/node_main/node_main-meta.js",
|
|
228
|
-
"front_end/entrypoints/node_main/node_main.js",
|
|
229
225
|
"front_end/entrypoints/shell/shell.js",
|
|
230
|
-
"front_end/entrypoints/startup/startup.js",
|
|
231
226
|
"front_end/entrypoints/wasmparser_worker/wasmparser_worker-entrypoint.js",
|
|
232
227
|
"front_end/entrypoints/wasmparser_worker/wasmparser_worker.js",
|
|
233
|
-
"front_end/entrypoints/worker_app/WorkerMain.js",
|
|
234
228
|
"front_end/entrypoints/worker_app/worker_app.js",
|
|
235
229
|
"front_end/inspector.html",
|
|
236
230
|
"front_end/integration_test_runner.html",
|
|
@@ -287,11 +281,11 @@ grd_files_release_sources = [
|
|
|
287
281
|
"front_end/models/issues_manager/descriptions/corsDisallowedByMode.md",
|
|
288
282
|
"front_end/models/issues_manager/descriptions/corsHeaderDisallowedByPreflightResponse.md",
|
|
289
283
|
"front_end/models/issues_manager/descriptions/corsInsecurePrivateNetwork.md",
|
|
290
|
-
"front_end/models/issues_manager/descriptions/corsInsecurePrivateNetworkPreflight.md",
|
|
291
284
|
"front_end/models/issues_manager/descriptions/corsInvalidHeaderValues.md",
|
|
292
285
|
"front_end/models/issues_manager/descriptions/corsMethodDisallowedByPreflightResponse.md",
|
|
293
286
|
"front_end/models/issues_manager/descriptions/corsNoCorsRedirectModeNotFollow.md",
|
|
294
287
|
"front_end/models/issues_manager/descriptions/corsOriginMismatch.md",
|
|
288
|
+
"front_end/models/issues_manager/descriptions/corsPreflightAllowPrivateNetworkError.md",
|
|
295
289
|
"front_end/models/issues_manager/descriptions/corsPreflightResponseInvalid.md",
|
|
296
290
|
"front_end/models/issues_manager/descriptions/corsRedirectContainsCredentials.md",
|
|
297
291
|
"front_end/models/issues_manager/descriptions/corsWildcardOriginNotAllowed.md",
|
|
@@ -379,7 +373,6 @@ grd_files_release_sources = [
|
|
|
379
373
|
"front_end/panels/lighthouse/lighthouse-legacy.js",
|
|
380
374
|
"front_end/panels/lighthouse/lighthouse-meta.js",
|
|
381
375
|
"front_end/panels/lighthouse/lighthouse.js",
|
|
382
|
-
"front_end/panels/lighthouse/lighthouse_module.js",
|
|
383
376
|
"front_end/panels/media/media-meta.js",
|
|
384
377
|
"front_end/panels/media/media.js",
|
|
385
378
|
"front_end/panels/mobile_throttling/mobile_throttling-legacy.js",
|
|
@@ -653,11 +646,11 @@ grd_files_debug_sources = [
|
|
|
653
646
|
"front_end/entrypoints/main/ExecutionContextSelector.js",
|
|
654
647
|
"front_end/entrypoints/main/MainImpl.js",
|
|
655
648
|
"front_end/entrypoints/main/SimpleApp.js",
|
|
656
|
-
"front_end/entrypoints/
|
|
657
|
-
"front_end/entrypoints/
|
|
658
|
-
"front_end/entrypoints/
|
|
659
|
-
"front_end/entrypoints/startup/RuntimeInstantiator.js",
|
|
649
|
+
"front_end/entrypoints/node_app/NodeConnectionsPanel.js",
|
|
650
|
+
"front_end/entrypoints/node_app/NodeMain.js",
|
|
651
|
+
"front_end/entrypoints/node_app/nodeConnectionsPanel.css.js",
|
|
660
652
|
"front_end/entrypoints/wasmparser_worker/WasmParserWorker.js",
|
|
653
|
+
"front_end/entrypoints/worker_app/WorkerMain.js",
|
|
661
654
|
"front_end/generated/ARIAProperties.js",
|
|
662
655
|
"front_end/generated/InspectorBackendCommands.js",
|
|
663
656
|
"front_end/generated/SupportedCSSProperties.js",
|
|
@@ -1271,7 +1264,6 @@ grd_files_debug_sources = [
|
|
|
1271
1264
|
"front_end/third_party/i18n/localized-string-set.js",
|
|
1272
1265
|
"front_end/third_party/intl-messageformat/package/intl-messageformat.esm.js",
|
|
1273
1266
|
"front_end/third_party/lighthouse/report-assets/report-generator.js",
|
|
1274
|
-
"front_end/third_party/lighthouse/report-assets/report.js",
|
|
1275
1267
|
"front_end/third_party/lighthouse/report/bundle.js",
|
|
1276
1268
|
"front_end/third_party/lit-html/directive.js",
|
|
1277
1269
|
"front_end/third_party/lit-html/directives.js",
|
|
@@ -1322,7 +1314,6 @@ grd_files_debug_sources = [
|
|
|
1322
1314
|
"front_end/ui/components/helpers/custom-elements.js",
|
|
1323
1315
|
"front_end/ui/components/helpers/directives.js",
|
|
1324
1316
|
"front_end/ui/components/helpers/get-root-node.js",
|
|
1325
|
-
"front_end/ui/components/helpers/get-stylesheet.js",
|
|
1326
1317
|
"front_end/ui/components/helpers/scheduled-render.js",
|
|
1327
1318
|
"front_end/ui/components/helpers/set-css-property.js",
|
|
1328
1319
|
"front_end/ui/components/icon_button/Icon.js",
|
|
@@ -1362,11 +1353,14 @@ grd_files_debug_sources = [
|
|
|
1362
1353
|
"front_end/ui/components/markdown_view/markdownView.css.js",
|
|
1363
1354
|
"front_end/ui/components/panel_feedback/FeedbackButton.js",
|
|
1364
1355
|
"front_end/ui/components/panel_feedback/PanelFeedback.js",
|
|
1356
|
+
"front_end/ui/components/panel_feedback/PreviewToggle.js",
|
|
1365
1357
|
"front_end/ui/components/panel_feedback/panelFeedback.css.js",
|
|
1358
|
+
"front_end/ui/components/panel_feedback/previewToggle.css.js",
|
|
1366
1359
|
"front_end/ui/components/render_coordinator/RenderCoordinator.js",
|
|
1367
1360
|
"front_end/ui/components/report_view/ReportView.js",
|
|
1368
1361
|
"front_end/ui/components/report_view/report.css.js",
|
|
1369
1362
|
"front_end/ui/components/report_view/reportKey.css.js",
|
|
1363
|
+
"front_end/ui/components/report_view/reportSection.css.js",
|
|
1370
1364
|
"front_end/ui/components/report_view/reportSectionDivider.css.js",
|
|
1371
1365
|
"front_end/ui/components/report_view/reportSectionHeader.css.js",
|
|
1372
1366
|
"front_end/ui/components/report_view/reportValue.css.js",
|
package/front_end/.eslintrc.js
CHANGED
|
@@ -9,7 +9,11 @@ rulesDirPlugin.RULES_DIR = path.join(__dirname, '..', 'scripts', 'eslint_rules',
|
|
|
9
9
|
module.exports = {
|
|
10
10
|
'rules': {
|
|
11
11
|
// L10n rules are only relevant in 'front_end'.
|
|
12
|
-
'rulesdir/l10n_filename_matches':
|
|
12
|
+
'rulesdir/l10n_filename_matches': [
|
|
13
|
+
2, {
|
|
14
|
+
rootFrontendDirectory: __dirname,
|
|
15
|
+
}
|
|
16
|
+
],
|
|
13
17
|
'rulesdir/l10n_i18nString_call_only_with_uistrings': 2,
|
|
14
18
|
'rulesdir/l10n_no_i18nString_calls_module_instantiation': 2,
|
|
15
19
|
'rulesdir/l10n_no_locked_or_placeholder_only_phrase': 2,
|
|
@@ -36,6 +40,7 @@ module.exports = {
|
|
|
36
40
|
'rulesdir/check_was_shown_methods': 2,
|
|
37
41
|
'rulesdir/static_custom_event_names': 2,
|
|
38
42
|
'rulesdir/lit_html_host_this': 2,
|
|
43
|
+
'rulesdir/lit_html_no_attribute_quotes': 2,
|
|
39
44
|
'@typescript-eslint/naming-convention': [
|
|
40
45
|
'error', {
|
|
41
46
|
'selector': ['property', 'parameterProperty'],
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 4.233 4.233" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2.117.132a1.985 1.985 0 1 0 .001 3.97 1.985 1.985 0 0 0-.001-3.97zm0 3.572a1.587 1.587 0 0 1-1.252-2.56L3.089 3.37a1.57 1.57 0 0 1-.972.335Zm1.252-.615L1.144.865a1.587 1.587 0 0 1 2.224 2.224z" style="fill:#000;stroke-width:.264583"/>
|
|
3
|
+
</svg>
|
|
@@ -55,7 +55,6 @@ const MAX_RECORDED_HISTOGRAMS_SIZE = 100;
|
|
|
55
55
|
export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
|
|
56
56
|
readonly #urlsBeingSaved: Map<string, string[]>;
|
|
57
57
|
events!: Common.EventTarget.EventTarget<EventTypes>;
|
|
58
|
-
#windowVisible?: boolean;
|
|
59
58
|
|
|
60
59
|
recordedEnumeratedHistograms: {actionName: EnumeratedHistogram, actionCode: number}[] = [];
|
|
61
60
|
recordedPerformanceHistograms: {histogramName: string, duration: number}[] = [];
|
|
@@ -89,11 +88,9 @@ export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
|
|
|
89
88
|
}
|
|
90
89
|
|
|
91
90
|
bringToFront(): void {
|
|
92
|
-
this.#windowVisible = true;
|
|
93
91
|
}
|
|
94
92
|
|
|
95
93
|
closeWindow(): void {
|
|
96
|
-
this.#windowVisible = false;
|
|
97
94
|
}
|
|
98
95
|
|
|
99
96
|
setIsDocked(isDocked: boolean, callback: () => void): void {
|
|
@@ -361,7 +361,6 @@ export enum EnumeratedHistogram {
|
|
|
361
361
|
ExperimentEnabledAtLaunch = 'DevTools.ExperimentEnabledAtLaunch',
|
|
362
362
|
ExperimentEnabled = 'DevTools.ExperimentEnabled',
|
|
363
363
|
ExperimentDisabled = 'DevTools.ExperimentDisabled',
|
|
364
|
-
CssEditorOpened = 'DevTools.CssEditorOpened',
|
|
365
364
|
DeveloperResourceLoaded = 'DevTools.DeveloperResourceLoaded',
|
|
366
365
|
DeveloperResourceScheme = 'DevTools.DeveloperResourceScheme',
|
|
367
366
|
LinearMemoryInspectorRevealedFrom = 'DevTools.LinearMemoryInspector.RevealedFrom',
|
|
@@ -164,18 +164,6 @@ export class UserMetrics {
|
|
|
164
164
|
EnumeratedHistogram.DualScreenDeviceEmulated, emulationAction, size);
|
|
165
165
|
}
|
|
166
166
|
|
|
167
|
-
cssEditorOpened(editorName: string): void {
|
|
168
|
-
const size = Object.keys(CssEditorOpened).length + 1;
|
|
169
|
-
const key = editorName;
|
|
170
|
-
const value = CssEditorOpened[key];
|
|
171
|
-
|
|
172
|
-
if (value === undefined) {
|
|
173
|
-
return;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
InspectorFrontendHostInstance.recordEnumeratedHistogram(EnumeratedHistogram.CssEditorOpened, value, size);
|
|
177
|
-
}
|
|
178
|
-
|
|
179
167
|
experimentEnabledAtLaunch(experimentId: string): void {
|
|
180
168
|
const size = DevtoolsExperiments['__lastValidEnumPosition'] + 1;
|
|
181
169
|
const experiment = DevtoolsExperiments[experimentId];
|
|
@@ -557,15 +545,6 @@ export enum DualScreenDeviceEmulated {
|
|
|
557
545
|
PlatformSupportUsed = 2, // user starts to use platform dual screen support feature.
|
|
558
546
|
}
|
|
559
547
|
|
|
560
|
-
export const CssEditorOpened: {
|
|
561
|
-
[x: string]: number,
|
|
562
|
-
} = {
|
|
563
|
-
'colorPicker': 0,
|
|
564
|
-
'shadowEditor': 1,
|
|
565
|
-
'bezierEditor': 2,
|
|
566
|
-
'fontEditor': 3,
|
|
567
|
-
};
|
|
568
|
-
|
|
569
548
|
/**
|
|
570
549
|
* This list should contain the currently active Devtools Experiments.
|
|
571
550
|
* Therefore, it is possible that the id's will no longer be continuous
|
|
@@ -695,7 +674,6 @@ export const IssueCreated: {
|
|
|
695
674
|
'TrustedWebActivityIssue::kDigitalAssetLinks': 40,
|
|
696
675
|
LowTextContrastIssue: 41,
|
|
697
676
|
'CorsIssue::InsecurePrivateNetwork': 42,
|
|
698
|
-
'CorsIssue::InsecurePrivateNetworkPreflight': 43,
|
|
699
677
|
'CorsIssue::InvalidHeaders': 44,
|
|
700
678
|
'CorsIssue::WildcardOriginWithCredentials': 45,
|
|
701
679
|
'CorsIssue::PreflightResponseInvalid': 46,
|
|
@@ -713,6 +691,7 @@ export const IssueCreated: {
|
|
|
713
691
|
'QuirksModeIssue::QuirksMode': 58,
|
|
714
692
|
'QuirksModeIssue::LimitedQuirksMode': 59,
|
|
715
693
|
DeprecationIssue: 60,
|
|
694
|
+
'CorsIssue::PreflightAllowPrivateNetworkError': 61,
|
|
716
695
|
};
|
|
717
696
|
|
|
718
697
|
// TODO(crbug.com/1167717): Make this a const enum again
|
|
@@ -1019,7 +1019,7 @@
|
|
|
1019
1019
|
"entrypoints/inspector_main/RenderingOptions.ts | showsLayerBordersOrangeoliveAnd": {
|
|
1020
1020
|
"message": "Shows layer borders (orange/olive) and tiles (cyan)."
|
|
1021
1021
|
},
|
|
1022
|
-
"entrypoints/js_app/
|
|
1022
|
+
"entrypoints/js_app/js_app.ts | main": {
|
|
1023
1023
|
"message": "Main"
|
|
1024
1024
|
},
|
|
1025
1025
|
"entrypoints/main/main-meta.ts | asAuthored": {
|
|
@@ -1208,40 +1208,40 @@
|
|
|
1208
1208
|
"entrypoints/main/MainImpl.ts | undockIntoSeparateWindow": {
|
|
1209
1209
|
"message": "Undock into separate window"
|
|
1210
1210
|
},
|
|
1211
|
-
"entrypoints/node_app/node_app
|
|
1212
|
-
"message": "
|
|
1211
|
+
"entrypoints/node_app/node_app.ts | connection": {
|
|
1212
|
+
"message": "Connection"
|
|
1213
1213
|
},
|
|
1214
|
-
"entrypoints/node_app/node_app
|
|
1214
|
+
"entrypoints/node_app/node_app.ts | networkTitle": {
|
|
1215
1215
|
"message": "Node"
|
|
1216
1216
|
},
|
|
1217
|
-
"entrypoints/
|
|
1218
|
-
"message": "Connection"
|
|
1219
|
-
},
|
|
1220
|
-
"entrypoints/node_main/node_main-meta.ts | node": {
|
|
1217
|
+
"entrypoints/node_app/node_app.ts | node": {
|
|
1221
1218
|
"message": "node"
|
|
1222
1219
|
},
|
|
1223
|
-
"entrypoints/
|
|
1220
|
+
"entrypoints/node_app/node_app.ts | showConnection": {
|
|
1224
1221
|
"message": "Show Connection"
|
|
1225
1222
|
},
|
|
1226
|
-
"entrypoints/
|
|
1223
|
+
"entrypoints/node_app/node_app.ts | showNode": {
|
|
1224
|
+
"message": "Node"
|
|
1225
|
+
},
|
|
1226
|
+
"entrypoints/node_app/NodeConnectionsPanel.ts | addConnection": {
|
|
1227
1227
|
"message": "Add connection"
|
|
1228
1228
|
},
|
|
1229
|
-
"entrypoints/
|
|
1229
|
+
"entrypoints/node_app/NodeConnectionsPanel.ts | networkAddressEgLocalhost": {
|
|
1230
1230
|
"message": "Network address (e.g. localhost:9229)"
|
|
1231
1231
|
},
|
|
1232
|
-
"entrypoints/
|
|
1232
|
+
"entrypoints/node_app/NodeConnectionsPanel.ts | noConnectionsSpecified": {
|
|
1233
1233
|
"message": "No connections specified"
|
|
1234
1234
|
},
|
|
1235
|
-
"entrypoints/
|
|
1235
|
+
"entrypoints/node_app/NodeConnectionsPanel.ts | nodejsDebuggingGuide": {
|
|
1236
1236
|
"message": "Node.js debugging guide"
|
|
1237
1237
|
},
|
|
1238
|
-
"entrypoints/
|
|
1238
|
+
"entrypoints/node_app/NodeConnectionsPanel.ts | specifyNetworkEndpointAnd": {
|
|
1239
1239
|
"message": "Specify network endpoint and DevTools will connect to it automatically. Read {PH1} to learn more."
|
|
1240
1240
|
},
|
|
1241
|
-
"entrypoints/
|
|
1241
|
+
"entrypoints/node_app/NodeMain.ts | main": {
|
|
1242
1242
|
"message": "Main"
|
|
1243
1243
|
},
|
|
1244
|
-
"entrypoints/
|
|
1244
|
+
"entrypoints/node_app/NodeMain.ts | nodejsS": {
|
|
1245
1245
|
"message": "Node.js: {PH1}"
|
|
1246
1246
|
},
|
|
1247
1247
|
"entrypoints/worker_app/WorkerMain.ts | main": {
|
|
@@ -1340,8 +1340,8 @@
|
|
|
1340
1340
|
"models/issues_manager/CorsIssue.ts | CORS": {
|
|
1341
1341
|
"message": "Cross-Origin Resource Sharing (CORS)"
|
|
1342
1342
|
},
|
|
1343
|
-
"models/issues_manager/CorsIssue.ts |
|
|
1344
|
-
"message": "
|
|
1343
|
+
"models/issues_manager/CorsIssue.ts | corsPrivateNetworkAccess": {
|
|
1344
|
+
"message": "Private Network Access"
|
|
1345
1345
|
},
|
|
1346
1346
|
"models/issues_manager/CrossOriginEmbedderPolicyIssue.ts | coopAndCoep": {
|
|
1347
1347
|
"message": "COOP and COEP"
|
|
@@ -2498,9 +2498,6 @@
|
|
|
2498
2498
|
"panels/application/BackForwardCacheStrings.ts | notMainFrame": {
|
|
2499
2499
|
"message": "Navigation happened in a frame other than the main frame."
|
|
2500
2500
|
},
|
|
2501
|
-
"panels/application/BackForwardCacheStrings.ts | optInUnloadHeaderNotPresent": {
|
|
2502
|
-
"message": "The page has unload handler without the back/forward cache opt-in header."
|
|
2503
|
-
},
|
|
2504
2501
|
"panels/application/BackForwardCacheStrings.ts | outstandingIndexedDBTransaction": {
|
|
2505
2502
|
"message": "Page with ongoing indexed DB transactions are not currently eligible for back/forward cache."
|
|
2506
2503
|
},
|
|
@@ -2645,20 +2642,20 @@
|
|
|
2645
2642
|
"panels/application/BackForwardCacheView.ts | backForwardCacheTitle": {
|
|
2646
2643
|
"message": "Back/forward cache"
|
|
2647
2644
|
},
|
|
2648
|
-
"panels/application/BackForwardCacheView.ts | bfcacheStatus": {
|
|
2649
|
-
"message": "Back/forward cache Status"
|
|
2650
|
-
},
|
|
2651
2645
|
"panels/application/BackForwardCacheView.ts | circumstantial": {
|
|
2652
2646
|
"message": "Not Actionable"
|
|
2653
2647
|
},
|
|
2654
2648
|
"panels/application/BackForwardCacheView.ts | circumstantialExplanation": {
|
|
2655
2649
|
"message": "These reasons are not actionable i.e. caching was prevented by something outside of the direct control of the page."
|
|
2656
2650
|
},
|
|
2651
|
+
"panels/application/BackForwardCacheView.ts | learnMore": {
|
|
2652
|
+
"message": "Learn more: back/forward cache eligibility"
|
|
2653
|
+
},
|
|
2657
2654
|
"panels/application/BackForwardCacheView.ts | mainFrame": {
|
|
2658
2655
|
"message": "Main Frame"
|
|
2659
2656
|
},
|
|
2660
2657
|
"panels/application/BackForwardCacheView.ts | normalNavigation": {
|
|
2661
|
-
"message": "
|
|
2658
|
+
"message": "Not served from back/forward cache: to trigger back/forward cache, use Chrome's back/forward buttons, or use the test button below to automatically navigate away and back."
|
|
2662
2659
|
},
|
|
2663
2660
|
"panels/application/BackForwardCacheView.ts | pageSupportNeeded": {
|
|
2664
2661
|
"message": "Actionable"
|
|
@@ -2667,10 +2664,13 @@
|
|
|
2667
2664
|
"message": "These reasons are actionable i.e. they can be cleaned up to make the page eligible for back/forward cache."
|
|
2668
2665
|
},
|
|
2669
2666
|
"panels/application/BackForwardCacheView.ts | restoredFromBFCache": {
|
|
2670
|
-
"message": "
|
|
2667
|
+
"message": "Successfully served from back/forward cache."
|
|
2668
|
+
},
|
|
2669
|
+
"panels/application/BackForwardCacheView.ts | runningTest": {
|
|
2670
|
+
"message": "Running test"
|
|
2671
2671
|
},
|
|
2672
2672
|
"panels/application/BackForwardCacheView.ts | runTest": {
|
|
2673
|
-
"message": "
|
|
2673
|
+
"message": "Test back/forward cache"
|
|
2674
2674
|
},
|
|
2675
2675
|
"panels/application/BackForwardCacheView.ts | supportPending": {
|
|
2676
2676
|
"message": "Pending Support"
|
|
@@ -2682,10 +2682,10 @@
|
|
|
2682
2682
|
"message": "unavailable"
|
|
2683
2683
|
},
|
|
2684
2684
|
"panels/application/BackForwardCacheView.ts | unknown": {
|
|
2685
|
-
"message": "
|
|
2685
|
+
"message": "Unknown Status"
|
|
2686
2686
|
},
|
|
2687
2687
|
"panels/application/BackForwardCacheView.ts | url": {
|
|
2688
|
-
"message": "URL"
|
|
2688
|
+
"message": "URL:"
|
|
2689
2689
|
},
|
|
2690
2690
|
"panels/application/BackgroundServiceView.ts | backgroundFetch": {
|
|
2691
2691
|
"message": "Background Fetch"
|
|
@@ -11405,6 +11405,9 @@
|
|
|
11405
11405
|
"ui/components/panel_feedback/PanelFeedback.ts | videoAndDocumentation": {
|
|
11406
11406
|
"message": "Video and documentation"
|
|
11407
11407
|
},
|
|
11408
|
+
"ui/components/panel_feedback/PreviewToggle.ts | previewTextFeedbackLink": {
|
|
11409
|
+
"message": "Send us your feedback."
|
|
11410
|
+
},
|
|
11408
11411
|
"ui/components/request_link_icon/RequestLinkIcon.ts | clickToShowRequestInTheNetwork": {
|
|
11409
11412
|
"message": "Click to open the network panel and show request for URL: {url}"
|
|
11410
11413
|
},
|
|
@@ -12065,6 +12068,12 @@
|
|
|
12065
12068
|
"ui/legacy/InspectorView.ts | drawer": {
|
|
12066
12069
|
"message": "Tool drawer"
|
|
12067
12070
|
},
|
|
12071
|
+
"ui/legacy/InspectorView.ts | drawerHidden": {
|
|
12072
|
+
"message": "Drawer hidden"
|
|
12073
|
+
},
|
|
12074
|
+
"ui/legacy/InspectorView.ts | drawerShown": {
|
|
12075
|
+
"message": "Drawer shown"
|
|
12076
|
+
},
|
|
12068
12077
|
"ui/legacy/InspectorView.ts | mainToolbar": {
|
|
12069
12078
|
"message": "Main toolbar"
|
|
12070
12079
|
},
|
|
@@ -1019,7 +1019,7 @@
|
|
|
1019
1019
|
"entrypoints/inspector_main/RenderingOptions.ts | showsLayerBordersOrangeoliveAnd": {
|
|
1020
1020
|
"message": "Ŝh́ôẃŝ ĺâýêŕ b̂ór̂d́êŕŝ (ór̂án̂ǵê/ól̂ív̂é) âńd̂ t́îĺêś (ĉýâń)."
|
|
1021
1021
|
},
|
|
1022
|
-
"entrypoints/js_app/
|
|
1022
|
+
"entrypoints/js_app/js_app.ts | main": {
|
|
1023
1023
|
"message": "M̂áîń"
|
|
1024
1024
|
},
|
|
1025
1025
|
"entrypoints/main/main-meta.ts | asAuthored": {
|
|
@@ -1208,40 +1208,40 @@
|
|
|
1208
1208
|
"entrypoints/main/MainImpl.ts | undockIntoSeparateWindow": {
|
|
1209
1209
|
"message": "Ûńd̂óĉḱ îńt̂ó ŝép̂ár̂át̂é ŵín̂d́ôẃ"
|
|
1210
1210
|
},
|
|
1211
|
-
"entrypoints/node_app/node_app
|
|
1212
|
-
"message": "
|
|
1211
|
+
"entrypoints/node_app/node_app.ts | connection": {
|
|
1212
|
+
"message": "Ĉón̂ńêćt̂íôń"
|
|
1213
1213
|
},
|
|
1214
|
-
"entrypoints/node_app/node_app
|
|
1214
|
+
"entrypoints/node_app/node_app.ts | networkTitle": {
|
|
1215
1215
|
"message": "N̂ód̂é"
|
|
1216
1216
|
},
|
|
1217
|
-
"entrypoints/
|
|
1218
|
-
"message": "Ĉón̂ńêćt̂íôń"
|
|
1219
|
-
},
|
|
1220
|
-
"entrypoints/node_main/node_main-meta.ts | node": {
|
|
1217
|
+
"entrypoints/node_app/node_app.ts | node": {
|
|
1221
1218
|
"message": "n̂ód̂é"
|
|
1222
1219
|
},
|
|
1223
|
-
"entrypoints/
|
|
1220
|
+
"entrypoints/node_app/node_app.ts | showConnection": {
|
|
1224
1221
|
"message": "Ŝh́ôẃ Ĉón̂ńêćt̂íôń"
|
|
1225
1222
|
},
|
|
1226
|
-
"entrypoints/
|
|
1223
|
+
"entrypoints/node_app/node_app.ts | showNode": {
|
|
1224
|
+
"message": "N̂ód̂é"
|
|
1225
|
+
},
|
|
1226
|
+
"entrypoints/node_app/NodeConnectionsPanel.ts | addConnection": {
|
|
1227
1227
|
"message": "Âd́d̂ ćôńn̂éĉt́îón̂"
|
|
1228
1228
|
},
|
|
1229
|
-
"entrypoints/
|
|
1229
|
+
"entrypoints/node_app/NodeConnectionsPanel.ts | networkAddressEgLocalhost": {
|
|
1230
1230
|
"message": "N̂ét̂ẃôŕk̂ ád̂d́r̂éŝś (ê.ǵ. l̂óĉál̂h́ôśt̂:9229)"
|
|
1231
1231
|
},
|
|
1232
|
-
"entrypoints/
|
|
1232
|
+
"entrypoints/node_app/NodeConnectionsPanel.ts | noConnectionsSpecified": {
|
|
1233
1233
|
"message": "N̂ó ĉón̂ńêćt̂íôńŝ śp̂éĉíf̂íêd́"
|
|
1234
1234
|
},
|
|
1235
|
-
"entrypoints/
|
|
1235
|
+
"entrypoints/node_app/NodeConnectionsPanel.ts | nodejsDebuggingGuide": {
|
|
1236
1236
|
"message": "N̂ód̂é.ĵś d̂éb̂úĝǵîńĝ ǵûíd̂é"
|
|
1237
1237
|
},
|
|
1238
|
-
"entrypoints/
|
|
1238
|
+
"entrypoints/node_app/NodeConnectionsPanel.ts | specifyNetworkEndpointAnd": {
|
|
1239
1239
|
"message": "Ŝṕêćîf́ŷ ńêt́ŵór̂ḱ êńd̂ṕôín̂t́ âńd̂ D́êv́T̂óôĺŝ ẃîĺl̂ ćôńn̂éĉt́ t̂ó ît́ âút̂óm̂át̂íĉál̂ĺŷ. Ŕêád̂ {PH1} t́ô ĺêár̂ń m̂ór̂é."
|
|
1240
1240
|
},
|
|
1241
|
-
"entrypoints/
|
|
1241
|
+
"entrypoints/node_app/NodeMain.ts | main": {
|
|
1242
1242
|
"message": "M̂áîń"
|
|
1243
1243
|
},
|
|
1244
|
-
"entrypoints/
|
|
1244
|
+
"entrypoints/node_app/NodeMain.ts | nodejsS": {
|
|
1245
1245
|
"message": "N̂ód̂é.ĵś: {PH1}"
|
|
1246
1246
|
},
|
|
1247
1247
|
"entrypoints/worker_app/WorkerMain.ts | main": {
|
|
@@ -1340,8 +1340,8 @@
|
|
|
1340
1340
|
"models/issues_manager/CorsIssue.ts | CORS": {
|
|
1341
1341
|
"message": "Ĉŕôśŝ-Ór̂íĝín̂ Ŕêśôúr̂ćê Śĥár̂ín̂ǵ (CORS)"
|
|
1342
1342
|
},
|
|
1343
|
-
"models/issues_manager/CorsIssue.ts |
|
|
1344
|
-
"message": "
|
|
1343
|
+
"models/issues_manager/CorsIssue.ts | corsPrivateNetworkAccess": {
|
|
1344
|
+
"message": "P̂ŕîv́ât́ê Ńêt́ŵór̂ḱ Âćĉéŝś"
|
|
1345
1345
|
},
|
|
1346
1346
|
"models/issues_manager/CrossOriginEmbedderPolicyIssue.ts | coopAndCoep": {
|
|
1347
1347
|
"message": "ĈÓÔṔ âńd̂ ĆÔÉP̂"
|
|
@@ -2498,9 +2498,6 @@
|
|
|
2498
2498
|
"panels/application/BackForwardCacheStrings.ts | notMainFrame": {
|
|
2499
2499
|
"message": "N̂áv̂íĝát̂íôń ĥáp̂ṕêńêd́ îń â f́r̂ám̂é ôt́ĥér̂ t́ĥán̂ t́ĥé m̂áîń f̂ŕâḿê."
|
|
2500
2500
|
},
|
|
2501
|
-
"panels/application/BackForwardCacheStrings.ts | optInUnloadHeaderNotPresent": {
|
|
2502
|
-
"message": "T̂h́ê ṕâǵê h́âś ûńl̂óâd́ ĥán̂d́l̂ér̂ ẃît́ĥóût́ t̂h́ê b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê óp̂t́-îń ĥéâd́êŕ."
|
|
2503
|
-
},
|
|
2504
2501
|
"panels/application/BackForwardCacheStrings.ts | outstandingIndexedDBTransaction": {
|
|
2505
2502
|
"message": "P̂áĝé ŵít̂h́ ôńĝóîńĝ ín̂d́êx́êd́ D̂B́ t̂ŕâńŝáĉt́îón̂ś âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
|
|
2506
2503
|
},
|
|
@@ -2645,20 +2642,20 @@
|
|
|
2645
2642
|
"panels/application/BackForwardCacheView.ts | backForwardCacheTitle": {
|
|
2646
2643
|
"message": "B̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé"
|
|
2647
2644
|
},
|
|
2648
|
-
"panels/application/BackForwardCacheView.ts | bfcacheStatus": {
|
|
2649
|
-
"message": "B̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé Ŝt́ât́ûś"
|
|
2650
|
-
},
|
|
2651
2645
|
"panels/application/BackForwardCacheView.ts | circumstantial": {
|
|
2652
2646
|
"message": "N̂ót̂ Áĉt́îón̂áb̂ĺê"
|
|
2653
2647
|
},
|
|
2654
2648
|
"panels/application/BackForwardCacheView.ts | circumstantialExplanation": {
|
|
2655
2649
|
"message": "T̂h́êśê ŕêáŝón̂ś âŕê ńôt́ âćt̂íôńâb́l̂é î.é. ĉáĉh́îńĝ ẃâś p̂ŕêv́êńt̂éd̂ b́ŷ śôḿêt́ĥín̂ǵ ôút̂śîd́ê óf̂ t́ĥé d̂ír̂éĉt́ ĉón̂t́r̂ól̂ óf̂ t́ĥé p̂áĝé."
|
|
2656
2650
|
},
|
|
2651
|
+
"panels/application/BackForwardCacheView.ts | learnMore": {
|
|
2652
|
+
"message": "L̂éâŕn̂ ḿôŕê: b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê él̂íĝíb̂íl̂ít̂ý"
|
|
2653
|
+
},
|
|
2657
2654
|
"panels/application/BackForwardCacheView.ts | mainFrame": {
|
|
2658
2655
|
"message": "M̂áîń F̂ŕâḿê"
|
|
2659
2656
|
},
|
|
2660
2657
|
"panels/application/BackForwardCacheView.ts | normalNavigation": {
|
|
2661
|
-
"message": "N̂ór̂ḿâ
|
|
2658
|
+
"message": "N̂ót̂ śêŕv̂éd̂ f́r̂óm̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê: t́ô t́r̂íĝǵêŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé, ûśê Ćĥŕôḿê'ś b̂áĉḱ/f̂ór̂ẃâŕd̂ b́ût́t̂ón̂ś, ôŕ ûśê t́ĥé t̂éŝt́ b̂út̂t́ôń b̂él̂óŵ t́ô áût́ôḿât́îćâĺl̂ý n̂áv̂íĝát̂é âẃâý âńd̂ b́âćk̂."
|
|
2662
2659
|
},
|
|
2663
2660
|
"panels/application/BackForwardCacheView.ts | pageSupportNeeded": {
|
|
2664
2661
|
"message": "Âćt̂íôńâb́l̂é"
|
|
@@ -2667,10 +2664,13 @@
|
|
|
2667
2664
|
"message": "T̂h́êśê ŕêáŝón̂ś âŕê áĉt́îón̂áb̂ĺê í.ê. t́ĥéŷ ćâń b̂é ĉĺêán̂éd̂ úp̂ t́ô ḿâḱê t́ĥé p̂áĝé êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
|
|
2668
2665
|
},
|
|
2669
2666
|
"panels/application/BackForwardCacheView.ts | restoredFromBFCache": {
|
|
2670
|
-
"message": "
|
|
2667
|
+
"message": "Ŝúĉćêśŝf́ûĺl̂ý ŝér̂v́êd́ f̂ŕôḿ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
|
|
2668
|
+
},
|
|
2669
|
+
"panels/application/BackForwardCacheView.ts | runningTest": {
|
|
2670
|
+
"message": "R̂ún̂ńîńĝ t́êśt̂"
|
|
2671
2671
|
},
|
|
2672
2672
|
"panels/application/BackForwardCacheView.ts | runTest": {
|
|
2673
|
-
"message": "
|
|
2673
|
+
"message": "T̂éŝt́ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé"
|
|
2674
2674
|
},
|
|
2675
2675
|
"panels/application/BackForwardCacheView.ts | supportPending": {
|
|
2676
2676
|
"message": "P̂én̂d́îńĝ Śûṕp̂ór̂t́"
|
|
@@ -2682,10 +2682,10 @@
|
|
|
2682
2682
|
"message": "ûńâv́âíl̂áb̂ĺê"
|
|
2683
2683
|
},
|
|
2684
2684
|
"panels/application/BackForwardCacheView.ts | unknown": {
|
|
2685
|
-
"message": "
|
|
2685
|
+
"message": "Ûńk̂ńôẃn̂ Śt̂át̂úŝ"
|
|
2686
2686
|
},
|
|
2687
2687
|
"panels/application/BackForwardCacheView.ts | url": {
|
|
2688
|
-
"message": "ÛŔL
|
|
2688
|
+
"message": "ÛŔL̂:"
|
|
2689
2689
|
},
|
|
2690
2690
|
"panels/application/BackgroundServiceView.ts | backgroundFetch": {
|
|
2691
2691
|
"message": "B̂áĉḱĝŕôún̂d́ F̂ét̂ćĥ"
|
|
@@ -11405,6 +11405,9 @@
|
|
|
11405
11405
|
"ui/components/panel_feedback/PanelFeedback.ts | videoAndDocumentation": {
|
|
11406
11406
|
"message": "V̂íd̂éô án̂d́ d̂óĉúm̂én̂t́ât́îón̂"
|
|
11407
11407
|
},
|
|
11408
|
+
"ui/components/panel_feedback/PreviewToggle.ts | previewTextFeedbackLink": {
|
|
11409
|
+
"message": "Ŝén̂d́ ûś ŷóûŕ f̂éêd́b̂áĉḱ."
|
|
11410
|
+
},
|
|
11408
11411
|
"ui/components/request_link_icon/RequestLinkIcon.ts | clickToShowRequestInTheNetwork": {
|
|
11409
11412
|
"message": "Ĉĺîćk̂ t́ô óp̂én̂ t́ĥé n̂ét̂ẃôŕk̂ ṕâńêĺ âńd̂ śĥóŵ ŕêq́ûéŝt́ f̂ór̂ ÚR̂Ĺ: {url}"
|
|
11410
11413
|
},
|
|
@@ -12065,6 +12068,12 @@
|
|
|
12065
12068
|
"ui/legacy/InspectorView.ts | drawer": {
|
|
12066
12069
|
"message": "T̂óôĺ d̂ŕâẃêŕ"
|
|
12067
12070
|
},
|
|
12071
|
+
"ui/legacy/InspectorView.ts | drawerHidden": {
|
|
12072
|
+
"message": "D̂ŕâẃêŕ ĥíd̂d́êń"
|
|
12073
|
+
},
|
|
12074
|
+
"ui/legacy/InspectorView.ts | drawerShown": {
|
|
12075
|
+
"message": "D̂ŕâẃêŕ ŝh́ôẃn̂"
|
|
12076
|
+
},
|
|
12068
12077
|
"ui/legacy/InspectorView.ts | mainToolbar": {
|
|
12069
12078
|
"message": "M̂áîń t̂óôĺb̂ár̂"
|
|
12070
12079
|
},
|
|
@@ -28,8 +28,6 @@
|
|
|
28
28
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
29
29
|
*/
|
|
30
30
|
|
|
31
|
-
import './utilities.js';
|
|
32
|
-
|
|
33
31
|
import * as ArrayUtilities from './array-utilities.js';
|
|
34
32
|
import * as DateUtilities from './date-utilities.js';
|
|
35
33
|
import * as DevToolsPath from './DevToolsPath.js';
|