Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1072)

Unified Diff: third_party/WebKit/Source/devtools/front_end/object_ui/RemoteObjectPreviewFormatter.js

Issue 2902623002: DevTools: Overlay scrollbars block the console readline (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/object_ui/RemoteObjectPreviewFormatter.js
diff --git a/third_party/WebKit/Source/devtools/front_end/object_ui/RemoteObjectPreviewFormatter.js b/third_party/WebKit/Source/devtools/front_end/object_ui/RemoteObjectPreviewFormatter.js
index 632b2de7ff3359dd4d3179d90faea3abdf5f70a3..b1c5459b920f308612276c6943d98d344a14e4e6 100644
--- a/third_party/WebKit/Source/devtools/front_end/object_ui/RemoteObjectPreviewFormatter.js
+++ b/third_party/WebKit/Source/devtools/front_end/object_ui/RemoteObjectPreviewFormatter.js
@@ -48,7 +48,7 @@ ObjectUI.RemoteObjectPreviewFormatter = class {
parentElement.createChild('span', 'object-description').textContent = text + ' ';
}
- var propertiesElement = parentElement.createChild('span', 'object-properties-preview source-code');
+ var propertiesElement = parentElement.createChild('span', 'object-properties-preview monospace');
propertiesElement.createTextChild(isArrayOrTypedArray ? '[' : '{');
if (preview.entries)
this._appendEntriesPreview(propertiesElement, preview);

Powered by Google App Engine
This is Rietveld 408576698