chrome-devtools-frontend 1.0.928589 → 1.0.929998

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 (64) hide show
  1. package/config/gni/devtools_grd_files.gni +7 -2
  2. package/config/gni/devtools_image_files.gni +1 -0
  3. package/front_end/Images/src/preview_feature_video_thumbnail.svg +92 -0
  4. package/front_end/Images/whatsnew.avif +0 -0
  5. package/front_end/core/common/CharacterIdMap.ts +12 -12
  6. package/front_end/core/common/Color.ts +71 -71
  7. package/front_end/core/common/Console.ts +4 -4
  8. package/front_end/core/common/ParsedURL.ts +14 -14
  9. package/front_end/core/common/Progress.ts +45 -45
  10. package/front_end/core/common/ResolverBase.ts +8 -8
  11. package/front_end/core/common/ResourceType.ts +20 -20
  12. package/front_end/core/common/SegmentedRange.ts +17 -16
  13. package/front_end/core/common/Settings.ts +84 -66
  14. package/front_end/core/common/SimpleHistoryManager.ts +33 -33
  15. package/front_end/core/common/StringOutputStream.ts +4 -4
  16. package/front_end/core/common/Throttler.ts +44 -40
  17. package/front_end/core/common/Trie.ts +42 -42
  18. package/front_end/core/common/WasmDisassembly.ts +11 -11
  19. package/front_end/core/common/Worker.ts +9 -9
  20. package/front_end/core/host/InspectorFrontendHost.ts +13 -13
  21. package/front_end/core/host/UserMetrics.ts +12 -13
  22. package/front_end/core/i18n/locales/en-US.json +53 -20
  23. package/front_end/core/i18n/locales/en-XL.json +53 -20
  24. package/front_end/core/platform/keyboard-utilities.ts +6 -0
  25. package/front_end/core/sdk/sdk-meta.ts +5 -0
  26. package/front_end/entrypoints/inspector_main/inspector_main-meta.ts +1 -0
  27. package/front_end/entrypoints/main/MainImpl.ts +14 -5
  28. package/front_end/entrypoints/main/main-meta.ts +4 -0
  29. package/front_end/models/issues_manager/IssuesManager.ts +2 -2
  30. package/front_end/panels/application/BackForwardCacheView.ts +19 -31
  31. package/front_end/panels/application/components/OriginTrialTreeView.ts +16 -0
  32. package/front_end/panels/console/console-meta.ts +6 -0
  33. package/front_end/panels/css_overview/CSSOverviewPanel.ts +9 -6
  34. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +171 -0
  35. package/front_end/panels/css_overview/components/components.ts +9 -0
  36. package/front_end/panels/css_overview/components/cssOverviewStartView.css +134 -0
  37. package/front_end/panels/css_overview/css_overview-meta.ts +2 -1
  38. package/front_end/panels/css_overview/css_overview.ts +0 -3
  39. package/front_end/panels/elements/ElementsTreeElement.ts +9 -0
  40. package/front_end/panels/elements/components/LayoutPane.ts +1 -1
  41. package/front_end/panels/elements/elements-meta.ts +1 -0
  42. package/front_end/panels/elements/layoutPane.css +1 -1
  43. package/front_end/panels/event_listeners/EventListenersView.ts +9 -0
  44. package/front_end/panels/help/ReleaseNoteText.ts +29 -0
  45. package/front_end/panels/help/help-meta.ts +1 -0
  46. package/front_end/panels/issues/IssueKindView.ts +36 -0
  47. package/front_end/panels/issues/IssueView.ts +19 -4
  48. package/front_end/panels/issues/IssuesPane.ts +2 -3
  49. package/front_end/panels/issues/components/HideIssuesMenu.ts +11 -40
  50. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +11 -0
  51. package/front_end/panels/sources/DebuggerPlugin.ts +23 -4
  52. package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +1 -1
  53. package/front_end/ui/components/helpers/get-stylesheet.ts +4 -0
  54. package/front_end/ui/components/text_prompt/TextPrompt.ts +21 -19
  55. package/front_end/ui/components/text_prompt/textPrompt.css +20 -9
  56. package/front_end/ui/legacy/Infobar.ts +1 -0
  57. package/front_end/ui/legacy/components/inline_editor/CSSLength.ts +4 -2
  58. package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +17 -7
  59. package/front_end/ui/legacy/components/quick_open/QuickOpen.ts +6 -6
  60. package/front_end/ui/legacy/tabbedPane.css +9 -0
  61. package/package.json +1 -1
  62. package/scripts/javascript_natives/index.js +31 -25
  63. package/front_end/panels/css_overview/CSSOverviewStartView.ts +0 -55
  64. package/front_end/panels/css_overview/cssOverviewStartView.css +0 -29
@@ -3,78 +3,78 @@
3
3
  // found in the LICENSE file.
4
4
 
5
5
  export class Trie {
6
- private size!: number;
7
- private root: number;
8
- private edges!: {
6
+ #size!: number;
7
+ #root: number;
8
+ #edges!: {
9
9
  [x: string]: number,
10
10
  }[];
11
- private isWord!: boolean[];
12
- private wordsInSubtree!: number[];
13
- private freeNodes!: number[];
11
+ #isWord!: boolean[];
12
+ #wordsInSubtree!: number[];
13
+ #freeNodes!: number[];
14
14
 
15
15
  constructor() {
16
- this.root = 0;
16
+ this.#root = 0;
17
17
  this.clear();
18
18
  }
19
19
 
20
20
  add(word: string): void {
21
- let node: number = this.root;
22
- ++this.wordsInSubtree[this.root];
21
+ let node: number = this.#root;
22
+ ++this.#wordsInSubtree[this.#root];
23
23
  for (let i = 0; i < word.length; ++i) {
24
24
  const edge = word[i];
25
- let next: number = this.edges[node][edge];
25
+ let next: number = this.#edges[node][edge];
26
26
  if (!next) {
27
- if (this.freeNodes.length) {
28
- next = (this.freeNodes.pop() as number);
27
+ if (this.#freeNodes.length) {
28
+ next = (this.#freeNodes.pop() as number);
29
29
  } else {
30
- next = this.size++;
31
- this.isWord.push(false);
32
- this.wordsInSubtree.push(0);
33
- this.edges.push(Object.create(null));
30
+ next = this.#size++;
31
+ this.#isWord.push(false);
32
+ this.#wordsInSubtree.push(0);
33
+ this.#edges.push(Object.create(null));
34
34
  }
35
- this.edges[node][edge] = next;
35
+ this.#edges[node][edge] = next;
36
36
  }
37
- ++this.wordsInSubtree[next];
37
+ ++this.#wordsInSubtree[next];
38
38
  node = next;
39
39
  }
40
- this.isWord[node] = true;
40
+ this.#isWord[node] = true;
41
41
  }
42
42
 
43
43
  remove(word: string): boolean {
44
44
  if (!this.has(word)) {
45
45
  return false;
46
46
  }
47
- let node: number = this.root;
48
- --this.wordsInSubtree[this.root];
47
+ let node: number = this.#root;
48
+ --this.#wordsInSubtree[this.#root];
49
49
  for (let i = 0; i < word.length; ++i) {
50
50
  const edge = word[i];
51
- const next = this.edges[node][edge];
52
- if (!--this.wordsInSubtree[next]) {
53
- delete this.edges[node][edge];
54
- this.freeNodes.push(next);
51
+ const next = this.#edges[node][edge];
52
+ if (!--this.#wordsInSubtree[next]) {
53
+ delete this.#edges[node][edge];
54
+ this.#freeNodes.push(next);
55
55
  }
56
56
  node = next;
57
57
  }
58
- this.isWord[node] = false;
58
+ this.#isWord[node] = false;
59
59
  return true;
60
60
  }
61
61
 
62
62
  has(word: string): boolean {
63
- let node: number = this.root;
63
+ let node: number = this.#root;
64
64
  for (let i = 0; i < word.length; ++i) {
65
- node = this.edges[node][word[i]];
65
+ node = this.#edges[node][word[i]];
66
66
  if (!node) {
67
67
  return false;
68
68
  }
69
69
  }
70
- return this.isWord[node];
70
+ return this.#isWord[node];
71
71
  }
72
72
 
73
73
  words(prefix?: string): string[] {
74
74
  prefix = prefix || '';
75
- let node: number = this.root;
75
+ let node: number = this.#root;
76
76
  for (let i = 0; i < prefix.length; ++i) {
77
- node = this.edges[node][prefix[i]];
77
+ node = this.#edges[node][prefix[i]];
78
78
  if (!node) {
79
79
  return [];
80
80
  }
@@ -85,24 +85,24 @@ export class Trie {
85
85
  }
86
86
 
87
87
  private dfs(node: number, prefix: string, results: string[]): void {
88
- if (this.isWord[node]) {
88
+ if (this.#isWord[node]) {
89
89
  results.push(prefix);
90
90
  }
91
- const edges = this.edges[node];
91
+ const edges = this.#edges[node];
92
92
  for (const edge in edges) {
93
93
  this.dfs(edges[edge], prefix + edge, results);
94
94
  }
95
95
  }
96
96
 
97
97
  longestPrefix(word: string, fullWordOnly: boolean): string {
98
- let node: number = this.root;
98
+ let node: number = this.#root;
99
99
  let wordIndex = 0;
100
100
  for (let i = 0; i < word.length; ++i) {
101
- node = this.edges[node][word[i]];
101
+ node = this.#edges[node][word[i]];
102
102
  if (!node) {
103
103
  break;
104
104
  }
105
- if (!fullWordOnly || this.isWord[node]) {
105
+ if (!fullWordOnly || this.#isWord[node]) {
106
106
  wordIndex = i + 1;
107
107
  }
108
108
  }
@@ -110,11 +110,11 @@ export class Trie {
110
110
  }
111
111
 
112
112
  clear(): void {
113
- this.size = 1;
114
- this.root = 0;
115
- this.edges = [Object.create(null)];
116
- this.isWord = [false];
117
- this.wordsInSubtree = [0];
118
- this.freeNodes = [];
113
+ this.#size = 1;
114
+ this.#root = 0;
115
+ this.#edges = [Object.create(null)];
116
+ this.#isWord = [false];
117
+ this.#wordsInSubtree = [0];
118
+ this.#freeNodes = [];
119
119
  }
120
120
  }
@@ -5,7 +5,7 @@
5
5
  import * as Platform from '../platform/platform.js';
6
6
 
7
7
  /**
8
- * Metadata to map between bytecode offsets and line numbers in the
8
+ * Metadata to map between bytecode #offsets and line numbers in the
9
9
  * disassembly for WebAssembly modules.
10
10
  */
11
11
 
@@ -14,26 +14,26 @@ interface FunctionBodyOffset {
14
14
  end: number;
15
15
  }
16
16
  export class WasmDisassembly {
17
- private readonly offsets: number[];
18
- private functionBodyOffsets: FunctionBodyOffset[];
17
+ readonly #offsets: number[];
18
+ #functionBodyOffsets: FunctionBodyOffset[];
19
19
 
20
20
  constructor(offsets: number[], functionBodyOffsets: FunctionBodyOffset[]) {
21
- this.offsets = offsets;
22
- this.functionBodyOffsets = functionBodyOffsets;
21
+ this.#offsets = offsets;
22
+ this.#functionBodyOffsets = functionBodyOffsets;
23
23
  }
24
24
 
25
25
  get lineNumbers(): number {
26
- return this.offsets.length;
26
+ return this.#offsets.length;
27
27
  }
28
28
 
29
29
  bytecodeOffsetToLineNumber(bytecodeOffset: number): number {
30
30
  return Platform.ArrayUtilities.upperBound(
31
- this.offsets, bytecodeOffset, Platform.ArrayUtilities.DEFAULT_COMPARATOR) -
31
+ this.#offsets, bytecodeOffset, Platform.ArrayUtilities.DEFAULT_COMPARATOR) -
32
32
  1;
33
33
  }
34
34
 
35
35
  lineNumberToBytecodeOffset(lineNumber: number): number {
36
- return this.offsets[lineNumber];
36
+ return this.#offsets[lineNumber];
37
37
  }
38
38
 
39
39
  /**
@@ -43,10 +43,10 @@ export class WasmDisassembly {
43
43
  let lineNumber = 0;
44
44
  let functionIndex = 0;
45
45
  while (lineNumber < this.lineNumbers) {
46
- if (functionIndex < this.functionBodyOffsets.length) {
46
+ if (functionIndex < this.#functionBodyOffsets.length) {
47
47
  const offset = this.lineNumberToBytecodeOffset(lineNumber);
48
- if (offset >= this.functionBodyOffsets[functionIndex].start) {
49
- lineNumber = this.bytecodeOffsetToLineNumber(this.functionBodyOffsets[functionIndex++].end) + 1;
48
+ if (offset >= this.#functionBodyOffsets[functionIndex].start) {
49
+ lineNumber = this.bytecodeOffsetToLineNumber(this.#functionBodyOffsets[functionIndex++].end) + 1;
50
50
  continue;
51
51
  }
52
52
  }
@@ -29,11 +29,11 @@
29
29
  */
30
30
 
31
31
  export class WorkerWrapper {
32
- private readonly workerPromise: Promise<Worker>;
33
- private disposed?: boolean;
32
+ readonly #workerPromise: Promise<Worker>;
33
+ #disposed?: boolean;
34
34
 
35
35
  private constructor(workerLocation: URL) {
36
- this.workerPromise = new Promise(fulfill => {
36
+ this.#workerPromise = new Promise(fulfill => {
37
37
  const worker = new Worker(workerLocation, {type: 'module'});
38
38
  worker.onmessage = (event: MessageEvent<unknown>): void => {
39
39
  console.assert(event.data === 'workerReady');
@@ -48,16 +48,16 @@ export class WorkerWrapper {
48
48
  }
49
49
 
50
50
  postMessage(message: unknown): void {
51
- this.workerPromise.then(worker => {
52
- if (!this.disposed) {
51
+ this.#workerPromise.then(worker => {
52
+ if (!this.#disposed) {
53
53
  worker.postMessage(message);
54
54
  }
55
55
  });
56
56
  }
57
57
 
58
58
  dispose(): void {
59
- this.disposed = true;
60
- this.workerPromise.then(worker => worker.terminate());
59
+ this.#disposed = true;
60
+ this.#workerPromise.then(worker => worker.terminate());
61
61
  }
62
62
 
63
63
  terminate(): void {
@@ -65,13 +65,13 @@ export class WorkerWrapper {
65
65
  }
66
66
 
67
67
  set onmessage(listener: (event: MessageEvent) => void) {
68
- this.workerPromise.then(worker => {
68
+ this.#workerPromise.then(worker => {
69
69
  worker.onmessage = listener;
70
70
  });
71
71
  }
72
72
 
73
73
  set onerror(listener: (event: Event) => void) {
74
- this.workerPromise.then(worker => {
74
+ this.#workerPromise.then(worker => {
75
75
  worker.onerror = listener;
76
76
  });
77
77
  }
@@ -53,9 +53,9 @@ const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_);
53
53
  const MAX_RECORDED_HISTOGRAMS_SIZE = 100;
54
54
 
55
55
  export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
56
- private readonly urlsBeingSaved: Map<string, string[]>;
56
+ readonly #urlsBeingSaved: Map<string, string[]>;
57
57
  events!: Common.EventTarget.EventTarget<EventTypes>;
58
- private windowVisible?: boolean;
58
+ #windowVisible?: boolean;
59
59
 
60
60
  recordedEnumeratedHistograms: {actionName: EnumeratedHistogram, actionCode: number}[] = [];
61
61
  recordedPerformanceHistograms: {histogramName: string, duration: number}[] = [];
@@ -71,7 +71,7 @@ export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
71
71
  document.addEventListener('keydown', event => {
72
72
  stopEventPropagation.call(this, (event as KeyboardEvent));
73
73
  }, true);
74
- this.urlsBeingSaved = new Map();
74
+ this.#urlsBeingSaved = new Map();
75
75
  }
76
76
 
77
77
  platform(): string {
@@ -89,11 +89,11 @@ export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
89
89
  }
90
90
 
91
91
  bringToFront(): void {
92
- this.windowVisible = true;
92
+ this.#windowVisible = true;
93
93
  }
94
94
 
95
95
  closeWindow(): void {
96
- this.windowVisible = false;
96
+ this.#windowVisible = false;
97
97
  }
98
98
 
99
99
  setIsDocked(isDocked: boolean, callback: () => void): void {
@@ -146,17 +146,17 @@ export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
146
146
  }
147
147
 
148
148
  save(url: string, content: string, forceSaveAs: boolean): void {
149
- let buffer = this.urlsBeingSaved.get(url);
149
+ let buffer = this.#urlsBeingSaved.get(url);
150
150
  if (!buffer) {
151
151
  buffer = [];
152
- this.urlsBeingSaved.set(url, buffer);
152
+ this.#urlsBeingSaved.set(url, buffer);
153
153
  }
154
154
  buffer.push(content);
155
155
  this.events.dispatchEventToListeners(Events.SavedURL, {url, fileSystemPath: url});
156
156
  }
157
157
 
158
158
  append(url: string, content: string): void {
159
- const buffer = this.urlsBeingSaved.get(url);
159
+ const buffer = this.#urlsBeingSaved.get(url);
160
160
  if (buffer) {
161
161
  buffer.push(content);
162
162
  this.events.dispatchEventToListeners(Events.AppendedToURL, url);
@@ -164,8 +164,8 @@ export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
164
164
  }
165
165
 
166
166
  close(url: string): void {
167
- const buffer = this.urlsBeingSaved.get(url) || [];
168
- this.urlsBeingSaved.delete(url);
167
+ const buffer = this.#urlsBeingSaved.get(url) || [];
168
+ this.#urlsBeingSaved.delete(url);
169
169
  let fileName = '';
170
170
 
171
171
  if (url) {
@@ -357,10 +357,10 @@ export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
357
357
  export let InspectorFrontendHostInstance: InspectorFrontendHostStub = window.InspectorFrontendHost;
358
358
 
359
359
  class InspectorFrontendAPIImpl {
360
- private readonly debugFrontend: boolean;
360
+ readonly #debugFrontend: boolean;
361
361
 
362
362
  constructor() {
363
- this.debugFrontend = (Boolean(Root.Runtime.Runtime.queryParam('debugFrontend'))) ||
363
+ this.#debugFrontend = (Boolean(Root.Runtime.Runtime.queryParam('debugFrontend'))) ||
364
364
  // @ts-ignore Compatibility hacks
365
365
  (window['InspectorTest'] && window['InspectorTest']['debugTest']);
366
366
 
@@ -371,7 +371,7 @@ class InspectorFrontendAPIImpl {
371
371
  }
372
372
 
373
373
  private dispatch(name: symbol, signature: string[], runOnceLoaded: boolean, ...params: string[]): void {
374
- if (this.debugFrontend) {
374
+ if (this.#debugFrontend) {
375
375
  setTimeout(() => innerDispatch(), 0);
376
376
  } else {
377
377
  innerDispatch();
@@ -32,13 +32,13 @@ import {InspectorFrontendHostInstance} from './InspectorFrontendHost.js';
32
32
  import {EnumeratedHistogram} from './InspectorFrontendHostAPI.js';
33
33
 
34
34
  export class UserMetrics {
35
- private panelChangedSinceLaunch: boolean;
36
- private firedLaunchHistogram: boolean;
37
- private launchPanelName: string;
35
+ #panelChangedSinceLaunch: boolean;
36
+ #firedLaunchHistogram: boolean;
37
+ #launchPanelName: string;
38
38
  constructor() {
39
- this.panelChangedSinceLaunch = false;
40
- this.firedLaunchHistogram = false;
41
- this.launchPanelName = '';
39
+ this.#panelChangedSinceLaunch = false;
40
+ this.#firedLaunchHistogram = false;
41
+ this.#launchPanelName = '';
42
42
  }
43
43
 
44
44
  panelShown(panelName: string): void {
@@ -46,7 +46,7 @@ export class UserMetrics {
46
46
  const size = Object.keys(PanelCodes).length + 1;
47
47
  InspectorFrontendHostInstance.recordEnumeratedHistogram(EnumeratedHistogram.PanelShown, code, size);
48
48
  // Store that the user has changed the panel so we know launch histograms should not be fired.
49
- this.panelChangedSinceLaunch = true;
49
+ this.#panelChangedSinceLaunch = true;
50
50
  }
51
51
 
52
52
  /**
@@ -57,7 +57,7 @@ export class UserMetrics {
57
57
  const size = Object.keys(PanelCodes).length + 1;
58
58
  InspectorFrontendHostInstance.recordEnumeratedHistogram(EnumeratedHistogram.PanelClosed, code, size);
59
59
  // Store that the user has changed the panel so we know launch histograms should not be fired.
60
- this.panelChangedSinceLaunch = true;
60
+ this.#panelChangedSinceLaunch = true;
61
61
  }
62
62
 
63
63
  sidebarPaneShown(sidebarPaneName: string): void {
@@ -76,11 +76,11 @@ export class UserMetrics {
76
76
  }
77
77
 
78
78
  panelLoaded(panelName: string, histogramName: string): void {
79
- if (this.firedLaunchHistogram || panelName !== this.launchPanelName) {
79
+ if (this.#firedLaunchHistogram || panelName !== this.#launchPanelName) {
80
80
  return;
81
81
  }
82
82
 
83
- this.firedLaunchHistogram = true;
83
+ this.#firedLaunchHistogram = true;
84
84
  // Use rAF and setTimeout to ensure the marker is fired after layout and rendering.
85
85
  // This will give the most accurate representation of the tool being ready for a user.
86
86
  requestAnimationFrame(() => {
@@ -89,7 +89,7 @@ export class UserMetrics {
89
89
  performance.mark(histogramName);
90
90
  // If the user has switched panel before we finished loading, ignore the histogram,
91
91
  // since the launch timings will have been affected and are no longer valid.
92
- if (this.panelChangedSinceLaunch) {
92
+ if (this.#panelChangedSinceLaunch) {
93
93
  return;
94
94
  }
95
95
  // This fires the event for the appropriate launch histogram.
@@ -100,7 +100,7 @@ export class UserMetrics {
100
100
  }
101
101
 
102
102
  setLaunchPanel(panelName: string|null): void {
103
- this.launchPanelName = (panelName as string);
103
+ this.#launchPanelName = (panelName as string);
104
104
  }
105
105
 
106
106
  keybindSetSettingChanged(keybindSet: string): void {
@@ -545,7 +545,6 @@ export const DevtoolsExperiments: {
545
545
  'backgroundServicesPaymentHandler': 5,
546
546
  'backgroundServicesPushMessaging': 6,
547
547
  'blackboxJSFramesOnTimeline': 7,
548
- 'cssOverview': 8,
549
548
  'inputEventsOnTimelineOverview': 10,
550
549
  'liveHeapProfile': 11,
551
550
  'protocolMonitor': 13,
@@ -2336,8 +2336,8 @@
2336
2336
  "panels/application/BackForwardCacheView.ts | bfcacheStatus": {
2337
2337
  "message": "Back-forward Cache Status"
2338
2338
  },
2339
- "panels/application/BackForwardCacheView.ts | chromeSupportNeeded": {
2340
- "message": "The last navigation was not cached because"
2339
+ "panels/application/BackForwardCacheView.ts | circumstantial": {
2340
+ "message": "Not Actionable"
2341
2341
  },
2342
2342
  "panels/application/BackForwardCacheView.ts | lastMainFrameNavigation": {
2343
2343
  "message": "Last Main Frame Navigation"
@@ -2346,14 +2346,17 @@
2346
2346
  "message": "Main Frame"
2347
2347
  },
2348
2348
  "panels/application/BackForwardCacheView.ts | normalNavigation": {
2349
- "message": "Normal navigation"
2349
+ "message": "Normal navigation (Not restored from back-forward cache)"
2350
2350
  },
2351
2351
  "panels/application/BackForwardCacheView.ts | pageSupportNeeded": {
2352
- "message": "Features preventing back-forward cache"
2352
+ "message": "Actionable"
2353
2353
  },
2354
2354
  "panels/application/BackForwardCacheView.ts | restoredFromBFCache": {
2355
2355
  "message": "Restored from back-forward cache"
2356
2356
  },
2357
+ "panels/application/BackForwardCacheView.ts | supportPending": {
2358
+ "message": "Pending Support"
2359
+ },
2357
2360
  "panels/application/BackForwardCacheView.ts | unavailable": {
2358
2361
  "message": "unavailable"
2359
2362
  },
@@ -2363,9 +2366,6 @@
2363
2366
  "panels/application/BackForwardCacheView.ts | url": {
2364
2367
  "message": "URL"
2365
2368
  },
2366
- "panels/application/BackForwardCacheView.ts | willBeSupported": {
2367
- "message": "(Supported in a future version of Chrome)"
2368
- },
2369
2369
  "panels/application/BackgroundServiceView.ts | backgroundFetch": {
2370
2370
  "message": "Background Fetch"
2371
2371
  },
@@ -2612,6 +2612,9 @@
2612
2612
  "panels/application/components/OriginTrialTreeView.ts | tokens": {
2613
2613
  "message": "{PH1} tokens"
2614
2614
  },
2615
+ "panels/application/components/OriginTrialTreeView.ts | trialName": {
2616
+ "message": "Trial Name"
2617
+ },
2615
2618
  "panels/application/components/OriginTrialTreeView.ts | usageRestriction": {
2616
2619
  "message": "Usage Restriction"
2617
2620
  },
@@ -3758,6 +3761,39 @@
3758
3761
  "panels/coverage/CoverageView.ts | urlFilter": {
3759
3762
  "message": "URL filter"
3760
3763
  },
3764
+ "panels/css_overview/components/CSSOverviewStartView.ts | activelyWorkingAndLookingForS": {
3765
+ "message": "Our team is actively working on this feature and we are looking for your {PH1}!"
3766
+ },
3767
+ "panels/css_overview/components/CSSOverviewStartView.ts | captureOverview": {
3768
+ "message": "Capture overview"
3769
+ },
3770
+ "panels/css_overview/components/CSSOverviewStartView.ts | capturePageCSSOverview": {
3771
+ "message": "Capture an overview of your page’s CSS"
3772
+ },
3773
+ "panels/css_overview/components/CSSOverviewStartView.ts | feedbackInline": {
3774
+ "message": "feedback"
3775
+ },
3776
+ "panels/css_overview/components/CSSOverviewStartView.ts | feedbackStandalone": {
3777
+ "message": "Feedback"
3778
+ },
3779
+ "panels/css_overview/components/CSSOverviewStartView.ts | identifyCSSImprovements": {
3780
+ "message": "Identify potential CSS improvements"
3781
+ },
3782
+ "panels/css_overview/components/CSSOverviewStartView.ts | identifyCSSImprovementsWithExampleIssues": {
3783
+ "message": "Identify potential CSS improvements (e.g. low contrast issues, unused declarations, color or font mismatches)"
3784
+ },
3785
+ "panels/css_overview/components/CSSOverviewStartView.ts | locateAffectedElements": {
3786
+ "message": "Locate the affected elements in the Elements panel"
3787
+ },
3788
+ "panels/css_overview/components/CSSOverviewStartView.ts | previewFeature": {
3789
+ "message": "Preview feature"
3790
+ },
3791
+ "panels/css_overview/components/CSSOverviewStartView.ts | quickStartWithCSSOverview": {
3792
+ "message": "Quick start: get started with the new CSS Overview panel"
3793
+ },
3794
+ "panels/css_overview/components/CSSOverviewStartView.ts | videoAndDocumentation": {
3795
+ "message": "Video and documentation"
3796
+ },
3761
3797
  "panels/css_overview/css_overview-meta.ts | cssOverview": {
3762
3798
  "message": "CSS Overview"
3763
3799
  },
@@ -3875,12 +3911,6 @@
3875
3911
  "panels/css_overview/CSSOverviewSidebarPanel.ts | clearOverview": {
3876
3912
  "message": "Clear overview"
3877
3913
  },
3878
- "panels/css_overview/CSSOverviewStartView.ts | captureOverview": {
3879
- "message": "Capture overview"
3880
- },
3881
- "panels/css_overview/CSSOverviewStartView.ts | cssOverview": {
3882
- "message": "CSS Overview"
3883
- },
3884
3914
  "panels/css_overview/CSSOverviewUnusedDeclarations.ts | bottomAppliedToAStatically": {
3885
3915
  "message": "Bottom applied to a statically positioned element"
3886
3916
  },
@@ -4895,14 +4925,8 @@
4895
4925
  "panels/issues/AttributionReportingIssueDetailsView.ts | untrustworthyOrigin": {
4896
4926
  "message": "Untrustworthy origin"
4897
4927
  },
4898
- "panels/issues/components/HideIssuesMenu.ts | hideIssueByCode": {
4899
- "message": "Hide issues like this"
4900
- },
4901
4928
  "panels/issues/components/HideIssuesMenu.ts | tooltipTitle": {
4902
- "message": "Hide issues menu"
4903
- },
4904
- "panels/issues/components/HideIssuesMenu.ts | UnhideIssueByCode": {
4905
- "message": "Unhide issues like this"
4929
+ "message": "Hide issues"
4906
4930
  },
4907
4931
  "panels/issues/CorsIssueDetailsView.ts | allowCredentialsValueFromHeader": {
4908
4932
  "message": "Access-Control-Allow-Credentials Header Value"
@@ -4997,6 +5021,9 @@
4997
5021
  "panels/issues/HiddenIssuesRow.ts | unhideAll": {
4998
5022
  "message": "Unhide all"
4999
5023
  },
5024
+ "panels/issues/IssueKindView.ts | hideAllCurrent": {
5025
+ "message": "Hide all current {PH1}"
5026
+ },
5000
5027
  "panels/issues/issues-meta.ts | cspViolations": {
5001
5028
  "message": "CSP Violations"
5002
5029
  },
@@ -5078,6 +5105,9 @@
5078
5105
  "panels/issues/IssueView.ts | blocked": {
5079
5106
  "message": "blocked"
5080
5107
  },
5108
+ "panels/issues/IssueView.ts | hideIssuesLikeThis": {
5109
+ "message": "Hide issues like this"
5110
+ },
5081
5111
  "panels/issues/IssueView.ts | learnMoreS": {
5082
5112
  "message": "Learn more: {PH1}"
5083
5113
  },
@@ -5093,6 +5123,9 @@
5093
5123
  "panels/issues/IssueView.ts | restrictionStatus": {
5094
5124
  "message": "Restriction Status"
5095
5125
  },
5126
+ "panels/issues/IssueView.ts | unhideIssuesLikeThis": {
5127
+ "message": "Unhide issues like this"
5128
+ },
5096
5129
  "panels/issues/IssueView.ts | warned": {
5097
5130
  "message": "Warned"
5098
5131
  },