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

Unified Diff: third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js

Issue 2472183002: DevTools: Fix wrapping bugs in console (Closed)
Patch Set: fix tests, remove unnecessary consoleView class Created 4 years, 1 month 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/console/ConsoleView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js b/third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js
index d6a05439e1eedc5de52f983dc0a2cb88fc94d428..17c4c72a9f30b72fe8a20a54f8bdb7da2f4e1dba 100644
--- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js
+++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js
@@ -1203,7 +1203,7 @@ WebInspector.ConsoleCommand = class extends WebInspector.ConsoleViewMessage {
this._contentElement = createElementWithClass('div', 'console-user-command');
this._contentElement.message = this;
- this._formattedCommand = createElementWithClass('span', 'console-message-text source-code');
+ this._formattedCommand = createElementWithClass('span', 'source-code');
this._formattedCommand.textContent = this.text.replaceControlCharacters();
this._contentElement.appendChild(this._formattedCommand);

Powered by Google App Engine
This is Rietveld 408576698