chrome-devtools-frontend 1.0.1025175 → 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.
- package/config/gni/devtools_grd_files.gni +1 -0
- package/config/gni/devtools_image_files.gni +1 -0
- package/front_end/Images/src/star_outline.svg +3 -0
- package/front_end/models/issues_manager/descriptions/arAttributionUntrustworthyOrigin.md +3 -3
- package/front_end/panels/profiler/ProfilesPanel.ts +1 -0
- package/front_end/ui/legacy/components/data_grid/dataGrid.css +2 -1
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +3 -2
- package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +6 -1
- package/package.json +1 -1
@@ -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",
|
@@ -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
|
1
|
+
# Ensure the origin of an attribution-registration request is trustworthy
|
2
2
|
|
3
|
-
An attribution was not
|
4
|
-
|
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: {
|
@@ -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: '
|
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}
|
1143
|
+
<span class='name-and-value'>${adorner}${this.nameElement}<span class='separator'>: </span>${
|
1144
|
+
this.valueElement}</span>
|
1144
1145
|
`;
|
1145
1146
|
}
|
1146
1147
|
|
package/package.json
CHANGED