Skip to content

Commit 03f7c18

Browse files
justindonnellyCommit bot
authored and
Commit bot
committed
Revert of DevTools: format keys in object previews using sans serif. (patchset #3 id:40001 of https://codereview.chromium.org/2866363003/ )
Reason for revert: This change broke webkit_tets on multiple builders. See, for example: https://uberchromegw.corp.google.com/i/chromium.webkit/builders/WebKit%20Linux%20Trusty/builds/26454 Original issue's description: > DevTools: format keys in object previews using sans serif. > > NOTRY=try > > Review-Url: https://codereview.chromium.org/2866363003 > Cr-Commit-Position: refs/heads/master@{#471578} > Committed: https://chromium.googlesource.com/chromium/src/+/14981e159fc950c0a628869e85c166c6c09809ca [email protected],[email protected] # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review-Url: https://codereview.chromium.org/2878243002 Cr-Commit-Position: refs/heads/master@{#471584}
1 parent 3ce67c1 commit 03f7c18

4 files changed

+20
-35
lines changed

front_end/object_ui/ObjectPropertiesSection.js

+6-9
Original file line numberDiff line numberDiff line change
@@ -152,16 +152,16 @@ ObjectUI.ObjectPropertiesSection = class extends UI.TreeOutlineInShadow {
152152
addElements('class', textAfterPrefix, className);
153153
} else if (isAsync) {
154154
textAfterPrefix = text.substring('async function'.length);
155-
addElements('async \u0192', textAfterPrefix, nameAndArguments(textAfterPrefix));
155+
addElements('async function', textAfterPrefix, nameAndArguments(textAfterPrefix));
156156
} else if (isGenerator) {
157157
textAfterPrefix = text.substring('function*'.length);
158-
addElements('\u0192*', textAfterPrefix, nameAndArguments(textAfterPrefix));
158+
addElements('function*', textAfterPrefix, nameAndArguments(textAfterPrefix));
159159
} else if (isGeneratorShorthand) {
160160
textAfterPrefix = text.substring('*'.length);
161-
addElements('\u0192*', textAfterPrefix, nameAndArguments(textAfterPrefix));
161+
addElements('function*', textAfterPrefix, nameAndArguments(textAfterPrefix));
162162
} else if (isBasic) {
163163
textAfterPrefix = text.substring('function'.length);
164-
addElements('\u0192', textAfterPrefix, nameAndArguments(textAfterPrefix));
164+
addElements('function', textAfterPrefix, nameAndArguments(textAfterPrefix));
165165
} else if (isArrow) {
166166
const maxArrowFunctionCharacterLength = 60;
167167
var abbreviation = text;
@@ -171,7 +171,7 @@ ObjectUI.ObjectPropertiesSection = class extends UI.TreeOutlineInShadow {
171171
abbreviation = text.substring(0, firstArrowIndex + 2) + ' {\u2026}';
172172
addElements('', text, abbreviation);
173173
} else {
174-
addElements('\u0192', text, nameAndArguments(text));
174+
addElements('function', text, nameAndArguments(text));
175175
}
176176
valueElement.title = description || '';
177177
return valueElement;
@@ -738,10 +738,7 @@ ObjectUI.ObjectPropertyTreeElement = class extends UI.TreeElement {
738738
return null;
739739

740740
var valueElement = createElementWithClass('span', 'value');
741-
if (value.description === 'Object')
742-
valueElement.textContent = '';
743-
else
744-
valueElement.setTextContentTruncatedIfNeeded(value.description || '');
741+
valueElement.setTextContentTruncatedIfNeeded(value.description || '');
745742
valueElement.classList.add('object-value-' + (value.subtype || value.type));
746743
valueElement.title = value.description || '';
747744
return valueElement;

front_end/object_ui/RemoteObjectPreviewFormatter.js

+8-12
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,16 @@ ObjectUI.RemoteObjectPreviewFormatter = class {
4646
parentElement.createChild('span', 'object-description').textContent = text + ' ';
4747
}
4848

49-
var propertiesElement = parentElement.createChild('span', 'object-properties-preview source-code');
50-
propertiesElement.createTextChild(isArrayOrTypedArray ? '[' : '{');
49+
parentElement.createTextChild(isArrayOrTypedArray ? '[' : '{');
5150
if (preview.entries)
52-
this._appendEntriesPreview(propertiesElement, preview);
51+
this._appendEntriesPreview(parentElement, preview);
5352
else if (isArrayOrTypedArray)
54-
this._appendArrayPropertiesPreview(propertiesElement, preview);
53+
this._appendArrayPropertiesPreview(parentElement, preview);
5554
else
56-
this._appendObjectPropertiesPreview(propertiesElement, preview);
55+
this._appendObjectPropertiesPreview(parentElement, preview);
5756
if (preview.overflow)
58-
propertiesElement.createChild('span').textContent = '\u2026';
59-
propertiesElement.createTextChild(isArrayOrTypedArray ? ']' : '}');
57+
parentElement.createChild('span').textContent = '\u2026';
58+
parentElement.createTextChild(isArrayOrTypedArray ? ']' : '}');
6059
}
6160

6261
/**
@@ -223,7 +222,7 @@ ObjectUI.RemoteObjectPreviewFormatter = class {
223222
}
224223

225224
if (type === 'function') {
226-
span.textContent = '\u0192';
225+
span.textContent = 'function';
227226
return span;
228227
}
229228

@@ -238,10 +237,7 @@ ObjectUI.RemoteObjectPreviewFormatter = class {
238237
}
239238

240239
if (type === 'object' && !subtype) {
241-
var preview = this._abbreviateFullQualifiedClassName(description);
242-
if (preview === 'Object')
243-
preview = '{\u2026}';
244-
span.textContent = preview;
240+
span.textContent = this._abbreviateFullQualifiedClassName(description);
245241
span.title = description;
246242
return span;
247243
}

front_end/object_ui/objectPropertiesSection.css

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
* found in the LICENSE file.
55
*/
66

7+
.object-properties-section .name {
8+
color: rgb(136, 19, 145);
9+
flex-shrink: 0;
10+
}
11+
712
.object-properties-section-separator {
813
flex-shrink: 0;
914
padding-right: 5px;

front_end/object_ui/objectValue.css

+1-14
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
.object-value-function-prefix,
2727
.object-value-boolean {
28-
color: rgb(13, 34, 170);
28+
color: rgb(170, 13, 145);
2929
}
3030

3131
.object-value-function {
@@ -102,16 +102,3 @@
102102
.object-properties-section .object-description {
103103
color: gray;
104104
}
105-
106-
.object-properties-preview {
107-
white-space: nowrap;
108-
}
109-
110-
.name {
111-
color: rgb(136, 19, 145);
112-
flex-shrink: 0;
113-
}
114-
115-
.object-properties-preview .name {
116-
color: #565656;
117-
}

0 commit comments

Comments
 (0)