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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/DatabaseQueryView.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/resources/DatabaseQueryView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/DatabaseQueryView.js b/third_party/WebKit/Source/devtools/front_end/resources/DatabaseQueryView.js
index aaf6894194f82c6074c94e98a11058c63acb9a4c..85ea436e52bb4e538902926ba1c358a1353ad941 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/DatabaseQueryView.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/DatabaseQueryView.js
@@ -135,6 +135,7 @@ Resources.DatabaseQueryView = class extends UI.VBox {
_queryFinished(query, columnNames, values) {
var dataGrid = DataGrid.SortableDataGrid.create(columnNames, values);
+ dataGrid.setStriped(true);
var trimmedQuery = query.trim();
if (dataGrid) {

Powered by Google App Engine
This is Rietveld 408576698