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

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

Issue 2894083002: [DevTools] Set row background instead of the table (Closed)
Patch Set: Fixed a comment 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/console/ConsoleViewMessage.js
diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
index e1e45a8719ab74cad140ff119d1a9c3c5e46e55b..3d4bc6722edd41d6a5f15fee98607b93f162de18 100644
--- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
+++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
@@ -172,6 +172,7 @@ Console.ConsoleViewMessage = class {
if (flatValues.length) {
this._dataGrid = DataGrid.SortableDataGrid.create(columnNames, flatValues);
+ this._dataGrid.setStriped(true);
var formattedResult = createElementWithClass('span', 'console-message-text');
var tableElement = formattedResult.createChild('div', 'console-message-formatted-table');

Powered by Google App Engine
This is Rietveld 408576698