chrome-devtools-frontend 1.0.1025020 → 1.0.1025631

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.
@@ -142,6 +142,7 @@ grd_files_release_sources = [
142
142
  "front_end/Images/smallIcons.svg",
143
143
  "front_end/Images/sources_panel_icon.svg",
144
144
  "front_end/Images/speech.png",
145
+ "front_end/Images/star_outline.svg",
145
146
  "front_end/Images/survey_feedback_icon.svg",
146
147
  "front_end/Images/switcherIcon.svg",
147
148
  "front_end/Images/three_dots_menu_icon.svg",
@@ -141,6 +141,7 @@ devtools_svg_sources = [
141
141
  "settings_14x14_icon.svg",
142
142
  "smallIcons.svg",
143
143
  "sources_panel_icon.svg",
144
+ "star_outline.svg",
144
145
  "survey_feedback_icon.svg",
145
146
  "switcherIcon.svg",
146
147
  "three_dots_menu_icon.svg",
@@ -0,0 +1,3 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.08749 12.5811L8.99999 11.1186L10.9125 12.5811L10.1997 10.2564L12.3372 8.55H9.76859L8.99999 6.1875L8.25029 8.55H5.66279L7.81919 10.2564L7.08749 12.5811ZM4.55579 16.2L6.24419 10.7442L1.79999 7.2H7.25579L8.99999 1.8L10.7442 7.2H16.2L11.7558 10.7442L13.4442 16.2L8.99999 12.825L4.55579 16.2Z" fill="black"/>
3
+ </svg>
@@ -1,4 +1,4 @@
1
- # Ensure the origin of an attribution trigger redirect is trustworthy
1
+ # Ensure the origin of an attribution-registration request is trustworthy
2
2
 
3
- An attribution was not recorded because the origin of the attribution trigger redirect was
4
- not trustworthy. For a redirect of the form `https://<attributionreportto>/.well-known/attribution-reporting/trigger-attribution[?data=<data>]`, the `<attributionreportto>` origin must be trustworthy.
3
+ An attribution source or trigger was not registered because the origin of the
4
+ request was not trustworthy.
@@ -679,6 +679,7 @@ export class JSProfilerPanel extends ProfilesPanel implements UI.ActionRegistrat
679
679
  constructor() {
680
680
  const registry = instance;
681
681
  super('js_profiler', [registry.cpuProfileType], 'profiler.js-toggle-recording');
682
+ this.splitWidget().mainWidget()?.setMinimumSize(350, 0);
682
683
  }
683
684
 
684
685
  static instance(opts: {
@@ -25,7 +25,8 @@
25
25
  bottom: 0;
26
26
  left: 0;
27
27
  right: 0;
28
- overflow: scroll;
28
+ overflow-x: hidden;
29
+ overflow-y: overlay;
29
30
  transform: translateZ(0);
30
31
  background-color: var(--color-background);
31
32
  }
@@ -1124,7 +1124,7 @@ export class ObjectPropertyTreeElement extends UI.TreeOutline.TreeElement {
1124
1124
  if (this.property.webIdl?.applicable) {
1125
1125
  const icon = new IconButton.Icon.Icon();
1126
1126
  icon.data = {
1127
- iconName: 'elements_panel_icon',
1127
+ iconName: 'star_outline',
1128
1128
  color: 'var(--color-text-secondary)',
1129
1129
  width: '16px',
1130
1130
  height: '16px',
@@ -1140,7 +1140,8 @@ export class ObjectPropertyTreeElement extends UI.TreeOutline.TreeElement {
1140
1140
  `;
1141
1141
  } else {
1142
1142
  container = UI.Fragment.html`
1143
- <span class='name-and-value'>${adorner}${this.nameElement}: ${this.valueElement}</span>
1143
+ <span class='name-and-value'>${adorner}${this.nameElement}<span class='separator'>: </span>${
1144
+ this.valueElement}</span>
1144
1145
  `;
1145
1146
  }
1146
1147
 
@@ -74,7 +74,12 @@
74
74
  overflow: hidden;
75
75
  line-height: 16px;
76
76
  display: flex;
77
- white-space: break-spaces;
77
+ white-space: nowrap;
78
+ }
79
+
80
+ .name-and-value .separator {
81
+ white-space: pre;
82
+ flex-shrink: 0;
78
83
  }
79
84
 
80
85
  .editing-sub-part .name-and-value {
package/package.json CHANGED
@@ -55,5 +55,5 @@
55
55
  "unittest": "scripts/test/run_unittests.py --no-text-coverage",
56
56
  "watch": "vpython third_party/node/node.py --output scripts/watch_build.js"
57
57
  },
58
- "version": "1.0.1025020"
58
+ "version": "1.0.1025631"
59
59
  }