chrome-devtools-frontend 1.0.930993 → 1.0.932348

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 (81) hide show
  1. package/config/gni/devtools_grd_files.gni +6 -2
  2. package/front_end/core/common/ParsedURL.ts +12 -10
  3. package/front_end/core/host/InspectorFrontendHostAPI.ts +8 -6
  4. package/front_end/core/i18n/locales/en-US.json +345 -12
  5. package/front_end/core/i18n/locales/en-XL.json +345 -12
  6. package/front_end/core/platform/DevToolsPath.ts +34 -0
  7. package/front_end/core/platform/platform.ts +2 -0
  8. package/front_end/core/protocol_client/NodeURL.ts +2 -1
  9. package/front_end/core/sdk/CSSStyleSheetHeader.ts +4 -2
  10. package/front_end/core/sdk/ChildTargetManager.ts +2 -0
  11. package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +4 -2
  12. package/front_end/core/sdk/DebuggerModel.ts +4 -3
  13. package/front_end/core/sdk/NetworkRequest.ts +3 -2
  14. package/front_end/core/sdk/Resource.ts +6 -5
  15. package/front_end/core/sdk/Script.ts +4 -2
  16. package/front_end/core/sdk/Target.ts +4 -0
  17. package/front_end/core/sdk/TracingModel.ts +8 -17
  18. package/front_end/entrypoint_template.html +1 -1
  19. package/front_end/entrypoints/formatter_worker/ESTreeWalker.ts +1 -1
  20. package/front_end/models/bindings/BreakpointManager.ts +6 -3
  21. package/front_end/models/bindings/ResourceMapping.ts +2 -1
  22. package/front_end/models/bindings/StylesSourceMapping.ts +2 -1
  23. package/front_end/models/emulation/DeviceModeModel.ts +1 -1
  24. package/front_end/models/persistence/IsolatedFileSystem.ts +9 -7
  25. package/front_end/models/persistence/IsolatedFileSystemManager.ts +8 -7
  26. package/front_end/models/persistence/PersistenceActions.ts +1 -1
  27. package/front_end/models/persistence/PlatformFileSystem.ts +4 -3
  28. package/front_end/models/text_utils/ContentProvider.ts +2 -1
  29. package/front_end/models/text_utils/StaticContentProvider.ts +4 -2
  30. package/front_end/models/workspace/UISourceCode.ts +3 -2
  31. package/front_end/panels/animation/AnimationGroupPreviewUI.ts +25 -25
  32. package/front_end/panels/animation/AnimationModel.ts +157 -156
  33. package/front_end/panels/animation/AnimationScreenshotPopover.ts +26 -26
  34. package/front_end/panels/animation/AnimationTimeline.ts +274 -260
  35. package/front_end/panels/animation/AnimationUI.ts +155 -145
  36. package/front_end/panels/application/BackForwardCacheStrings.ts +621 -0
  37. package/front_end/panels/application/BackForwardCacheView.ts +24 -8
  38. package/front_end/panels/application/ReportingApiReportsView.ts +3 -2
  39. package/front_end/panels/application/ReportingApiView.ts +1 -2
  40. package/front_end/panels/application/backForwardCacheView.css +10 -0
  41. package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +48 -40
  42. package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +37 -37
  43. package/front_end/panels/browser_debugger/ObjectEventListenersSidebarPane.ts +23 -19
  44. package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +56 -56
  45. package/front_end/panels/changes/ChangesView.ts +42 -225
  46. package/front_end/panels/changes/changes-legacy.ts +0 -2
  47. package/front_end/panels/changes/changes.ts +0 -6
  48. package/front_end/panels/changes/changesView.css +2 -69
  49. package/front_end/panels/changes/module.json +1 -1
  50. package/front_end/panels/console/ConsolePinPane.ts +80 -75
  51. package/front_end/panels/console/ConsoleView.ts +1 -9
  52. package/front_end/panels/console/consolePinPane.css +4 -1
  53. package/front_end/panels/elements/StylesSidebarPane.ts +2 -1
  54. package/front_end/panels/security/mainView.css +2 -1
  55. package/front_end/panels/snippets/ScriptSnippetFileSystem.ts +2 -1
  56. package/front_end/panels/sources/NavigatorView.ts +5 -2
  57. package/front_end/panels/sources/SourcesPanel.ts +28 -1
  58. package/front_end/panels/sources/sources-meta.ts +1 -4
  59. package/front_end/third_party/codemirror.next/bundle.ts +6 -4
  60. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  61. package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -1
  62. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +30 -1
  63. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
  64. package/front_end/third_party/codemirror.next/package.json +4 -3
  65. package/front_end/ui/components/buttons/Button.ts +22 -6
  66. package/front_end/ui/components/buttons/button.css +50 -4
  67. package/front_end/ui/components/diff_view/DiffView.ts +288 -0
  68. package/front_end/ui/components/diff_view/diffView.css +73 -0
  69. package/front_end/ui/components/diff_view/diff_view.ts +5 -0
  70. package/front_end/ui/components/docs/button/basic.html +28 -0
  71. package/front_end/ui/components/docs/button/basic.ts +43 -2
  72. package/front_end/ui/components/report_view/report.css +1 -0
  73. package/front_end/ui/components/text_editor/config.ts +34 -1
  74. package/front_end/ui/legacy/ForwardedInputEventHandler.ts +5 -3
  75. package/front_end/ui/legacy/components/color_picker/spectrum.css +2 -4
  76. package/front_end/ui/legacy/themeColors.css +4 -0
  77. package/package.json +1 -1
  78. package/scripts/build/generate_css_js_files.js +1 -0
  79. package/scripts/migration/class-fields/migrate.js +1 -3
  80. package/front_end/panels/changes/ChangesHighlighter.ts +0 -179
  81. package/front_end/panels/changes/ChangesTextEditor.ts +0 -96
@@ -490,6 +490,7 @@ grd_files_release_sources = [
490
490
  "front_end/ui/components/buttons/buttons.js",
491
491
  "front_end/ui/components/code_highlighter/code_highlighter.js",
492
492
  "front_end/ui/components/data_grid/data_grid.js",
493
+ "front_end/ui/components/diff_view/diff_view.js",
493
494
  "front_end/ui/components/expandable_list/expandable_list.js",
494
495
  "front_end/ui/components/helpers/helpers.js",
495
496
  "front_end/ui/components/icon_button/icon_button.js",
@@ -587,6 +588,7 @@ grd_files_debug_sources = [
587
588
  "front_end/core/i18n/i18nImpl.js",
588
589
  "front_end/core/i18n/i18nTypes.js",
589
590
  "front_end/core/i18n/time-utilities.js",
591
+ "front_end/core/platform/DevToolsPath.js",
590
592
  "front_end/core/platform/UIString.js",
591
593
  "front_end/core/platform/array-utilities.js",
592
594
  "front_end/core/platform/date-utilities.js",
@@ -813,6 +815,7 @@ grd_files_debug_sources = [
813
815
  "front_end/panels/application/ApplicationPanelCacheSection.js",
814
816
  "front_end/panels/application/ApplicationPanelSidebar.js",
815
817
  "front_end/panels/application/ApplicationPanelTreeElement.js",
818
+ "front_end/panels/application/BackForwardCacheStrings.js",
816
819
  "front_end/panels/application/BackForwardCacheView.js",
817
820
  "front_end/panels/application/BackgroundServiceModel.js",
818
821
  "front_end/panels/application/BackgroundServiceView.js",
@@ -836,6 +839,7 @@ grd_files_debug_sources = [
836
839
  "front_end/panels/application/StorageView.js",
837
840
  "front_end/panels/application/TrustTokensTreeElement.js",
838
841
  "front_end/panels/application/appManifestView.css.js",
842
+ "front_end/panels/application/backForwardCacheView.css.js",
839
843
  "front_end/panels/application/backgroundServiceView.css.js",
840
844
  "front_end/panels/application/components/EndpointsGrid.js",
841
845
  "front_end/panels/application/components/FrameDetailsView.js",
@@ -873,9 +877,7 @@ grd_files_debug_sources = [
873
877
  "front_end/panels/browser_debugger/categorizedBreakpointsSidebarPane.css.js",
874
878
  "front_end/panels/browser_debugger/domBreakpointsSidebarPane.css.js",
875
879
  "front_end/panels/browser_debugger/xhrBreakpointsSidebarPane.css.js",
876
- "front_end/panels/changes/ChangesHighlighter.js",
877
880
  "front_end/panels/changes/ChangesSidebar.js",
878
- "front_end/panels/changes/ChangesTextEditor.js",
879
881
  "front_end/panels/changes/ChangesView.js",
880
882
  "front_end/panels/changes/changesSidebar.css.js",
881
883
  "front_end/panels/changes/changesView.css.js",
@@ -1366,6 +1368,8 @@ grd_files_debug_sources = [
1366
1368
  "front_end/ui/components/data_grid/DataGridUtils.js",
1367
1369
  "front_end/ui/components/data_grid/dataGrid.css.js",
1368
1370
  "front_end/ui/components/data_grid/dataGridController.css.js",
1371
+ "front_end/ui/components/diff_view/DiffView.js",
1372
+ "front_end/ui/components/diff_view/diffView.css.js",
1369
1373
  "front_end/ui/components/expandable_list/ExpandableList.js",
1370
1374
  "front_end/ui/components/expandable_list/expandableList.css.js",
1371
1375
  "front_end/ui/components/helpers/component-server-setup.js",
@@ -110,24 +110,26 @@ export class ParsedURL {
110
110
  return null;
111
111
  }
112
112
 
113
- static platformPathToURL(fileSystemPath: string): string {
114
- fileSystemPath = fileSystemPath.replace(/\\/g, '/');
115
- if (!fileSystemPath.startsWith('file://')) {
116
- if (fileSystemPath.startsWith('/')) {
117
- fileSystemPath = 'file://' + fileSystemPath;
113
+ static rawPathToUrlString(fileSystemPath: Platform.DevToolsPath.RawPathString): Platform.DevToolsPath.UrlString {
114
+ let rawPath: string = fileSystemPath;
115
+ rawPath = rawPath.replace(/\\/g, '/');
116
+ if (!rawPath.startsWith('file://')) {
117
+ if (rawPath.startsWith('/')) {
118
+ rawPath = 'file://' + rawPath;
118
119
  } else {
119
- fileSystemPath = 'file:///' + fileSystemPath;
120
+ rawPath = 'file:///' + rawPath;
120
121
  }
121
122
  }
122
- return fileSystemPath;
123
+ return rawPath as Platform.DevToolsPath.UrlString;
123
124
  }
124
125
 
125
- static urlToPlatformPath(fileURL: string, isWindows?: boolean): string {
126
+ static urlToRawPathString(fileURL: Platform.DevToolsPath.UrlString, isWindows?: boolean):
127
+ Platform.DevToolsPath.RawPathString {
126
128
  console.assert(fileURL.startsWith('file://'), 'This must be a file URL.');
127
129
  if (isWindows) {
128
- return fileURL.substr('file:///'.length).replace(/\//g, '\\');
130
+ return fileURL.substr('file:///'.length).replace(/\//g, '\\') as Platform.DevToolsPath.RawPathString;
129
131
  }
130
- return fileURL.substr('file://'.length);
132
+ return fileURL.substr('file://'.length) as Platform.DevToolsPath.RawPathString;
131
133
  }
132
134
 
133
135
  static urlWithoutHash(url: string): string {
@@ -2,6 +2,8 @@
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 type * as Platform from '../../core/platform/platform.js';
6
+
5
7
  // TODO(crbug.com/1167717): Make this a const enum again
6
8
  // eslint-disable-next-line rulesdir/const_enum
7
9
  export enum Events {
@@ -84,7 +86,7 @@ export interface DevToolsFileSystem {
84
86
  type: string;
85
87
  fileSystemName: string;
86
88
  rootURL: string;
87
- fileSystemPath: string;
89
+ fileSystemPath: Platform.DevToolsPath.RawPathString;
88
90
  }
89
91
 
90
92
  export interface FileSystemAddedEvent {
@@ -93,9 +95,9 @@ export interface FileSystemAddedEvent {
93
95
  }
94
96
 
95
97
  export interface FilesChangedEvent {
96
- changed: string[];
97
- added: string[];
98
- removed: string[];
98
+ changed: Platform.DevToolsPath.RawPathString[];
99
+ added: Platform.DevToolsPath.RawPathString[];
100
+ removed: Platform.DevToolsPath.RawPathString[];
99
101
  }
100
102
 
101
103
  export interface IndexingEvent {
@@ -131,7 +133,7 @@ export interface SavedURLEvent {
131
133
 
132
134
  export interface SearchCompletedEvent {
133
135
  requestId: number;
134
- files: string[];
136
+ files: Platform.DevToolsPath.RawPathString[];
135
137
  }
136
138
 
137
139
  // While `EventDescriptors` are used to dynamically dispatch host binding events,
@@ -153,7 +155,7 @@ export type EventTypes = {
153
155
  [Events.EnterInspectElementMode]: void,
154
156
  [Events.EyeDropperPickedColor]: EyeDropperPickedColorEvent,
155
157
  [Events.FileSystemsLoaded]: DevToolsFileSystem[],
156
- [Events.FileSystemRemoved]: string,
158
+ [Events.FileSystemRemoved]: Platform.DevToolsPath.RawPathString,
157
159
  [Events.FileSystemAdded]: FileSystemAddedEvent,
158
160
  [Events.FileSystemFilesChangedAddedRemoved]: FilesChangedEvent,
159
161
  [Events.IndexingTotalWorkCalculated]: IndexingTotalWorkCalculatedEvent,
@@ -2330,6 +2330,339 @@
2330
2330
  "panels/application/AppManifestView.ts | theSpecifiedApplicationPlatform": {
2331
2331
  "message": "The specified application platform is not supported on Android"
2332
2332
  },
2333
+ "panels/application/BackForwardCacheStrings.ts | appBanner": {
2334
+ "message": "Pages that requested an AppBanner are not currently eligible for back/forward cache."
2335
+ },
2336
+ "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabled": {
2337
+ "message": "Back/forward cache is disabled by flags. Visit chrome://flags/#back-forward-cache to enable it locally on this device."
2338
+ },
2339
+ "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabledByCommandLine": {
2340
+ "message": "Back/forward cache is disabled by the command line."
2341
+ },
2342
+ "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabledByLowMemory": {
2343
+ "message": "Back/forward cache is disabled due to insufficient memory."
2344
+ },
2345
+ "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabledForDelegate": {
2346
+ "message": "Back/forward cache is not supported by delegate."
2347
+ },
2348
+ "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabledForPrerender": {
2349
+ "message": "Back/forward cache is disabled for prerenderer."
2350
+ },
2351
+ "panels/application/BackForwardCacheStrings.ts | broadcastChannel": {
2352
+ "message": "The page cannot be cached because it has a BroadcastChannel instance with registered listeners."
2353
+ },
2354
+ "panels/application/BackForwardCacheStrings.ts | cacheControlNoStore": {
2355
+ "message": "Pages with cache-control:no-store header cannot enter back/forward cache."
2356
+ },
2357
+ "panels/application/BackForwardCacheStrings.ts | cacheFlushed": {
2358
+ "message": "The cache was intentionally cleared."
2359
+ },
2360
+ "panels/application/BackForwardCacheStrings.ts | cacheLimit": {
2361
+ "message": "The page was evicted from the cache to allow another page to be cached."
2362
+ },
2363
+ "panels/application/BackForwardCacheStrings.ts | containsPlugins": {
2364
+ "message": "Pages containing plugins are not currently eligible for back/forward cache."
2365
+ },
2366
+ "panels/application/BackForwardCacheStrings.ts | contentFileChooser": {
2367
+ "message": "Pages that use FileChooser API are not eligible for back/forward cache."
2368
+ },
2369
+ "panels/application/BackForwardCacheStrings.ts | contentFileSystemAccess": {
2370
+ "message": "Pages that use File System Access API are not eligible for back/forward cache."
2371
+ },
2372
+ "panels/application/BackForwardCacheStrings.ts | contentMediaDevicesDispatcherHost": {
2373
+ "message": "Pages that use Media Device Dispatcher are not eligible for back/forward cache."
2374
+ },
2375
+ "panels/application/BackForwardCacheStrings.ts | contentMediaPlay": {
2376
+ "message": "A media player was playing upon navigating away."
2377
+ },
2378
+ "panels/application/BackForwardCacheStrings.ts | contentMediaSession": {
2379
+ "message": "Pages that use MediaSession API and set a playback state are not eligible for back/forward cache."
2380
+ },
2381
+ "panels/application/BackForwardCacheStrings.ts | contentMediaSessionService": {
2382
+ "message": "Pages that use MediaSession API and set action handlers are not eligible for back/forward cache."
2383
+ },
2384
+ "panels/application/BackForwardCacheStrings.ts | contentSecurityHandler": {
2385
+ "message": "Pages that use SecurityHandler are not eligible for back/forward cache."
2386
+ },
2387
+ "panels/application/BackForwardCacheStrings.ts | contentSerial": {
2388
+ "message": "Pages that use Serial API are not eligible for back/forward cache."
2389
+ },
2390
+ "panels/application/BackForwardCacheStrings.ts | contentWebAuthenticationAPI": {
2391
+ "message": "Pages that use WebAuthetication API are not eligible for back/forward cache."
2392
+ },
2393
+ "panels/application/BackForwardCacheStrings.ts | contentWebBluetooth": {
2394
+ "message": "Pages that use WebBluetooth API are not eligible for back/forward cache."
2395
+ },
2396
+ "panels/application/BackForwardCacheStrings.ts | contentWebUSB": {
2397
+ "message": "Pages that use WebUSB API are not eligible for back/forward cache."
2398
+ },
2399
+ "panels/application/BackForwardCacheStrings.ts | dedicatedWorkerOrWorklet": {
2400
+ "message": "Pages that use a dedicated worker or worklet are not currently eligible for back/forward cache."
2401
+ },
2402
+ "panels/application/BackForwardCacheStrings.ts | documentLoaded": {
2403
+ "message": "The document did not finish loading before navigating away."
2404
+ },
2405
+ "panels/application/BackForwardCacheStrings.ts | embedderAppBannerManager": {
2406
+ "message": "EmbedderAppBannerManager"
2407
+ },
2408
+ "panels/application/BackForwardCacheStrings.ts | embedderChromePasswordManagerClientBindCredentialManager": {
2409
+ "message": "EmbedderChromePasswordManagerClientBindCredentialManager"
2410
+ },
2411
+ "panels/application/BackForwardCacheStrings.ts | embedderDomDistillerSelfDeletingRequestDelegate": {
2412
+ "message": "EmbedderDomDistillerSelfDeletingRequestDelegate"
2413
+ },
2414
+ "panels/application/BackForwardCacheStrings.ts | embedderDomDistillerViewerSource": {
2415
+ "message": "EmbedderDomDistillerViewerSource"
2416
+ },
2417
+ "panels/application/BackForwardCacheStrings.ts | embedderExtensionMessaging": {
2418
+ "message": "EmbedderExtensionMessaging"
2419
+ },
2420
+ "panels/application/BackForwardCacheStrings.ts | embedderExtensionMessagingForOpenPort": {
2421
+ "message": "EmbedderExtensionMessagingForOpenPort"
2422
+ },
2423
+ "panels/application/BackForwardCacheStrings.ts | embedderExtensions": {
2424
+ "message": "EmbedderExtensions"
2425
+ },
2426
+ "panels/application/BackForwardCacheStrings.ts | embedderExtensionSentMessageToCachedFrame": {
2427
+ "message": "EmbedderExtensionSentMessageToCachedFrame"
2428
+ },
2429
+ "panels/application/BackForwardCacheStrings.ts | embedderModalDialog": {
2430
+ "message": "EmbedderModalDialog"
2431
+ },
2432
+ "panels/application/BackForwardCacheStrings.ts | embedderOfflinePage": {
2433
+ "message": "EmbedderOfflinePage"
2434
+ },
2435
+ "panels/application/BackForwardCacheStrings.ts | embedderOomInterventionTabHelper": {
2436
+ "message": "EmbedderOomInterventionTabHelper"
2437
+ },
2438
+ "panels/application/BackForwardCacheStrings.ts | embedderPermissionRequestManager": {
2439
+ "message": "EmbedderPermissionRequestManager"
2440
+ },
2441
+ "panels/application/BackForwardCacheStrings.ts | embedderPopupBlockerTabHelper": {
2442
+ "message": "EmbedderPopupBlockerTabHelper"
2443
+ },
2444
+ "panels/application/BackForwardCacheStrings.ts | embedderSafeBrowsingThreatDetails": {
2445
+ "message": "EmbedderSafeBrowsingThreatDetails"
2446
+ },
2447
+ "panels/application/BackForwardCacheStrings.ts | embedderSafeBrowsingTriggeredPopupBlocker": {
2448
+ "message": "EmbedderSafeBrowsingTriggeredPopupBlocker"
2449
+ },
2450
+ "panels/application/BackForwardCacheStrings.ts | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
2451
+ "message": "A service worker was activated while the page was in back/forward cache."
2452
+ },
2453
+ "panels/application/BackForwardCacheStrings.ts | foregroundCacheLimit": {
2454
+ "message": "The page was evicted from the cache to allow another page to be cached."
2455
+ },
2456
+ "panels/application/BackForwardCacheStrings.ts | grantedMediaStreamAccess": {
2457
+ "message": "Pages that have granted media stream access are not currently eligible for back/forward cache."
2458
+ },
2459
+ "panels/application/BackForwardCacheStrings.ts | haveInnerContents": {
2460
+ "message": "Pages that use portals are not currently eligible for back/forward cache."
2461
+ },
2462
+ "panels/application/BackForwardCacheStrings.ts | HTTPMethodNotGET": {
2463
+ "message": "Only pages loaded via a GET request are eligible for back/forward cache."
2464
+ },
2465
+ "panels/application/BackForwardCacheStrings.ts | HTTPStatusNotOK": {
2466
+ "message": "Only pages with a status code of 2XX can be cached."
2467
+ },
2468
+ "panels/application/BackForwardCacheStrings.ts | idleManager": {
2469
+ "message": "Pages that use IdleManager are not currently eligible for back/forward cache."
2470
+ },
2471
+ "panels/application/BackForwardCacheStrings.ts | indexedDBConnection": {
2472
+ "message": "Pages that have an open IndexedDB connection are not currently eligible for back/forward cache."
2473
+ },
2474
+ "panels/application/BackForwardCacheStrings.ts | ineligibleAPI": {
2475
+ "message": "Ineligible APIs were used."
2476
+ },
2477
+ "panels/application/BackForwardCacheStrings.ts | injectedJavascript": {
2478
+ "message": "IPages that JavaScript is injected into by extensions are not currently eligible for back/forward cache."
2479
+ },
2480
+ "panels/application/BackForwardCacheStrings.ts | injectedStyleSheet": {
2481
+ "message": "Pages that StyleSheet is injected into by extensions are not currently eligible for back/forward cache."
2482
+ },
2483
+ "panels/application/BackForwardCacheStrings.ts | internalError": {
2484
+ "message": "Internal error."
2485
+ },
2486
+ "panels/application/BackForwardCacheStrings.ts | JavaScriptExecution": {
2487
+ "message": "Chrome detected an attempt to execute JavaScript while in the cache."
2488
+ },
2489
+ "panels/application/BackForwardCacheStrings.ts | keyboardLock": {
2490
+ "message": "Pages that use Keyboard lock are not currently eligible for back/forward cache."
2491
+ },
2492
+ "panels/application/BackForwardCacheStrings.ts | loading": {
2493
+ "message": "The page did not finish loading before navigating away."
2494
+ },
2495
+ "panels/application/BackForwardCacheStrings.ts | mainResourceHasCacheControlNoCache": {
2496
+ "message": "Pages whose main resource has cache-control:no-cache cannot enter back/forward cache."
2497
+ },
2498
+ "panels/application/BackForwardCacheStrings.ts | mainResourceHasCacheControlNoStore": {
2499
+ "message": "Pages whose main resource has cache-control:no-store cannot enter back/forward cache."
2500
+ },
2501
+ "panels/application/BackForwardCacheStrings.ts | navigationCancelledWhileRestoring": {
2502
+ "message": "Navigation was cancelled before the page could be restored from back/forward cache."
2503
+ },
2504
+ "panels/application/BackForwardCacheStrings.ts | networkExceedsBufferLimit": {
2505
+ "message": "The page was evicted from the cache because an active network connection received too much data. Chrome limits the amount of data that a page may receive while cached."
2506
+ },
2507
+ "panels/application/BackForwardCacheStrings.ts | networkRequestDatapipeDrainedAsBytesConsumer": {
2508
+ "message": "Pages that have inflight fetch() or XHR are not currently eligible for back/forward cache."
2509
+ },
2510
+ "panels/application/BackForwardCacheStrings.ts | networkRequestRedirected": {
2511
+ "message": "The page was evicted from back/forward cache because an active network request involved a redirect."
2512
+ },
2513
+ "panels/application/BackForwardCacheStrings.ts | networkRequestTimeout": {
2514
+ "message": "The page was evicted from the cache because a network connection was open too long. Chrome limits the amount of time that a page may receive data while cached."
2515
+ },
2516
+ "panels/application/BackForwardCacheStrings.ts | noResponseHead": {
2517
+ "message": "Pages that do not have a valid response head cannot enter back/forward cache."
2518
+ },
2519
+ "panels/application/BackForwardCacheStrings.ts | notMainFrame": {
2520
+ "message": "Navigation happened in a frame other than the main frame."
2521
+ },
2522
+ "panels/application/BackForwardCacheStrings.ts | optInUnloadHeaderNotPresent": {
2523
+ "message": "The page has unload handler without the back/forward cache opt-in header."
2524
+ },
2525
+ "panels/application/BackForwardCacheStrings.ts | outstandingIndexedDBTransaction": {
2526
+ "message": "Page with ongoing indexed DB transactions are not currently eligible for back/forward cache."
2527
+ },
2528
+ "panels/application/BackForwardCacheStrings.ts | outstandingNetworkRequestDirectSocket": {
2529
+ "message": "Pages with an in-flight network request are not currently eligible for back/forward cache."
2530
+ },
2531
+ "panels/application/BackForwardCacheStrings.ts | outstandingNetworkRequestFetch": {
2532
+ "message": "Pages with an in-flight fetch network request are not currently eligible for back/forward cache."
2533
+ },
2534
+ "panels/application/BackForwardCacheStrings.ts | outstandingNetworkRequestOthers": {
2535
+ "message": "Pages with an in-flight network request are not currently eligible for back/forward cache."
2536
+ },
2537
+ "panels/application/BackForwardCacheStrings.ts | outstandingNetworkRequestXHR": {
2538
+ "message": "Pages with an in-flight XHR network request are not currently eligible for back/forward cache."
2539
+ },
2540
+ "panels/application/BackForwardCacheStrings.ts | paymentManager": {
2541
+ "message": "Pages that use PaymentManager are not currently eligible for back/forward cache."
2542
+ },
2543
+ "panels/application/BackForwardCacheStrings.ts | pictureInPicture": {
2544
+ "message": "Pages that use Picture-in-Picture are not currently eligible for back/forward cache."
2545
+ },
2546
+ "panels/application/BackForwardCacheStrings.ts | portal": {
2547
+ "message": "Pages that use portals are not currently eligible for back/forward cache."
2548
+ },
2549
+ "panels/application/BackForwardCacheStrings.ts | printing": {
2550
+ "message": "Pages that show Printing UI are not currently eligible for back/forward cache."
2551
+ },
2552
+ "panels/application/BackForwardCacheStrings.ts | relatedActiveContentsExist": {
2553
+ "message": "The page was opened using window.open() and another tab has a reference to it, or the page opened a window."
2554
+ },
2555
+ "panels/application/BackForwardCacheStrings.ts | rendererProcessCrashed": {
2556
+ "message": "The renderer process for the page in back/forward cache crashed."
2557
+ },
2558
+ "panels/application/BackForwardCacheStrings.ts | rendererProcessKilled": {
2559
+ "message": "The renderer process for the page in back/forward cache was killed."
2560
+ },
2561
+ "panels/application/BackForwardCacheStrings.ts | requestedAudioCapturePermission": {
2562
+ "message": "Pages that have requested audio capture permissions are not currently eligible for back/forward cache."
2563
+ },
2564
+ "panels/application/BackForwardCacheStrings.ts | requestedBackForwardCacheBlockedSensors": {
2565
+ "message": "Pages that have requested sensor permissions are not currently eligible for back/forward cache."
2566
+ },
2567
+ "panels/application/BackForwardCacheStrings.ts | requestedBackgroundWorkPermission": {
2568
+ "message": "Pages that have requested background sync or fetch permissions are not currently eligible for back/forward cache."
2569
+ },
2570
+ "panels/application/BackForwardCacheStrings.ts | requestedMIDIPermission": {
2571
+ "message": "Pages that have requested MIDI permissions are not currently eligible for back/forward cache."
2572
+ },
2573
+ "panels/application/BackForwardCacheStrings.ts | requestedNotificationsPermission": {
2574
+ "message": "Pages that have requested notifications permissions are not currently eligible for back/forward cache."
2575
+ },
2576
+ "panels/application/BackForwardCacheStrings.ts | requestedStorageAccessGrant": {
2577
+ "message": "Pages that have requested storage access are not currently eligible for back/forward cache."
2578
+ },
2579
+ "panels/application/BackForwardCacheStrings.ts | requestedVideoCapturePermission": {
2580
+ "message": "Pages that have requested video capture permissions are not currently eligible for back/forward cache."
2581
+ },
2582
+ "panels/application/BackForwardCacheStrings.ts | schemeNotHTTPOrHTTPS": {
2583
+ "message": "Only pages whose URL scheme is HTTP / HTTPS can be cached."
2584
+ },
2585
+ "panels/application/BackForwardCacheStrings.ts | serviceWorkerClaim": {
2586
+ "message": "The page was claimed by a service worker while it is in back/forward cache."
2587
+ },
2588
+ "panels/application/BackForwardCacheStrings.ts | serviceWorkerPostMessage": {
2589
+ "message": "A service worker attempted to send the page in back/forward cache a MessageEvent."
2590
+ },
2591
+ "panels/application/BackForwardCacheStrings.ts | serviceWorkerUnregistration": {
2592
+ "message": "ServiceWorker was unregistered while a page was in back/forward cache."
2593
+ },
2594
+ "panels/application/BackForwardCacheStrings.ts | serviceWorkerVersionActivation": {
2595
+ "message": "The page was evicted from back/forward cache due to a service worker activation."
2596
+ },
2597
+ "panels/application/BackForwardCacheStrings.ts | sessionRestored": {
2598
+ "message": "Chrome restarted and cleared the back/forward cache entries."
2599
+ },
2600
+ "panels/application/BackForwardCacheStrings.ts | sharedWorker": {
2601
+ "message": "Pages that use SharedWorker are not currently eligible for back/forward cache."
2602
+ },
2603
+ "panels/application/BackForwardCacheStrings.ts | speechRecognizer": {
2604
+ "message": "Pages that use SpeechRecognizer are not currently eligible for back/forward cache."
2605
+ },
2606
+ "panels/application/BackForwardCacheStrings.ts | speechSynthesis": {
2607
+ "message": "Pages that use SpeechSynthesis are not currently eligible for back/forward cache."
2608
+ },
2609
+ "panels/application/BackForwardCacheStrings.ts | subframeIsNavigating": {
2610
+ "message": "An iframe on the page started a navigation that did not complete."
2611
+ },
2612
+ "panels/application/BackForwardCacheStrings.ts | subresourceHasCacheControlNoCache": {
2613
+ "message": "Pages whose subresource has cache-control:no-cache cannot enter back/forward cache."
2614
+ },
2615
+ "panels/application/BackForwardCacheStrings.ts | subresourceHasCacheControlNoStore": {
2616
+ "message": "Pages whose subresource has cache-control:no-store cannot enter back/forward cache."
2617
+ },
2618
+ "panels/application/BackForwardCacheStrings.ts | timeout": {
2619
+ "message": "The page exceeded the maximum time in back/forward cache and was expired."
2620
+ },
2621
+ "panels/application/BackForwardCacheStrings.ts | timeoutPuttingInCache": {
2622
+ "message": "The page timed out entering back/forward cache (likely due to long-running pagehide handlers)."
2623
+ },
2624
+ "panels/application/BackForwardCacheStrings.ts | unloadHandlerExistsInMainFrame": {
2625
+ "message": "The page has an unload handler in the main frame."
2626
+ },
2627
+ "panels/application/BackForwardCacheStrings.ts | unloadHandlerExistsInSubFrame": {
2628
+ "message": "The page has an unload handler in a sub frame."
2629
+ },
2630
+ "panels/application/BackForwardCacheStrings.ts | userAgentOverrideDiffers": {
2631
+ "message": "Browser has changed the user agent override header."
2632
+ },
2633
+ "panels/application/BackForwardCacheStrings.ts | wasGrantedMediaAccess": {
2634
+ "message": "Pages that have granted access to record video or audio are not currently eligible for back/forward cache."
2635
+ },
2636
+ "panels/application/BackForwardCacheStrings.ts | webDatabase": {
2637
+ "message": "Pages that use WebDatabase are not currently eligible for back/forward cache."
2638
+ },
2639
+ "panels/application/BackForwardCacheStrings.ts | webHID": {
2640
+ "message": "Pages that use WebHID are not currently eligible for back/forward cache."
2641
+ },
2642
+ "panels/application/BackForwardCacheStrings.ts | webLocks": {
2643
+ "message": "Pages that use WebLocks are not currently eligible for back/forward cache."
2644
+ },
2645
+ "panels/application/BackForwardCacheStrings.ts | webNfc": {
2646
+ "message": "Pages that use WebNfc are not currently eligible for back/forwad cache."
2647
+ },
2648
+ "panels/application/BackForwardCacheStrings.ts | webOTPService": {
2649
+ "message": "Pages that use WebOTPService are not currently eligible for bfcache."
2650
+ },
2651
+ "panels/application/BackForwardCacheStrings.ts | webRTC": {
2652
+ "message": "Pages with WebRTC cannot enter back/forward cache."
2653
+ },
2654
+ "panels/application/BackForwardCacheStrings.ts | webShare": {
2655
+ "message": "Pages that use WebShare are not currently eligible for back/forwad cache."
2656
+ },
2657
+ "panels/application/BackForwardCacheStrings.ts | webSocket": {
2658
+ "message": "Pages with WebSocket cannot enter back/forward cache."
2659
+ },
2660
+ "panels/application/BackForwardCacheStrings.ts | webTransport": {
2661
+ "message": "Pages with WebTransport cannot enter back/forward cache."
2662
+ },
2663
+ "panels/application/BackForwardCacheStrings.ts | webXR": {
2664
+ "message": "Pages that use WebXR are not currently eligible for back/forward cache."
2665
+ },
2333
2666
  "panels/application/BackForwardCacheView.ts | backForwardCacheTitle": {
2334
2667
  "message": "Back-forward Cache"
2335
2668
  },
@@ -3275,18 +3608,9 @@
3275
3608
  "panels/changes/ChangesSidebar.ts | sFromSourceMap": {
3276
3609
  "message": "{PH1} (from source map)"
3277
3610
  },
3278
- "panels/changes/ChangesTextEditor.ts | additions": {
3279
- "message": "Addition:{PH1}"
3280
- },
3281
- "panels/changes/ChangesTextEditor.ts | deletions": {
3282
- "message": "Deletion:{PH1}"
3283
- },
3284
3611
  "panels/changes/ChangesView.ts | binaryData": {
3285
3612
  "message": "Binary data"
3286
3613
  },
3287
- "panels/changes/ChangesView.ts | changesDiffViewer": {
3288
- "message": "Changes diff viewer"
3289
- },
3290
3614
  "panels/changes/ChangesView.ts | noChanges": {
3291
3615
  "message": "No changes"
3292
3616
  },
@@ -3299,9 +3623,6 @@
3299
3623
  "panels/changes/ChangesView.ts | sInsertions": {
3300
3624
  "message": "{n, plural, =1 {# insertion (+)} other {# insertions (+)}}"
3301
3625
  },
3302
- "panels/changes/ChangesView.ts | SkippingDMatchingLines": {
3303
- "message": "( … Skipping {PH1} matching lines … )"
3304
- },
3305
3626
  "panels/console_counters/WarningErrorCounter.ts | openConsoleToViewS": {
3306
3627
  "message": "Open Console to view {PH1}"
3307
3628
  },
@@ -10979,6 +11300,18 @@
10979
11300
  "ui/components/data_grid/DataGrid.ts | sortBy": {
10980
11301
  "message": "Sort By"
10981
11302
  },
11303
+ "ui/components/diff_view/DiffView.ts | additions": {
11304
+ "message": "Addition:"
11305
+ },
11306
+ "ui/components/diff_view/DiffView.ts | changesDiffViewer": {
11307
+ "message": "Changes diff viewer"
11308
+ },
11309
+ "ui/components/diff_view/DiffView.ts | deletions": {
11310
+ "message": "Deletion:"
11311
+ },
11312
+ "ui/components/diff_view/DiffView.ts | SkippingDMatchingLines": {
11313
+ "message": "( … Skipping {PH1} matching lines … )"
11314
+ },
10982
11315
  "ui/components/issue_counter/IssueCounter.ts | breakingChanges": {
10983
11316
  "message": "{issueCount, plural, =1 {# breaking change} other {# breaking changes}}"
10984
11317
  },