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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/ViewportDataGrid.js

Issue 2499563003: [Devtools] Fixed bug with ViewPortDataGrid not always revealing nodes (Closed)
Patch Set: [Devtools] Fixed bug with ViewPortDataGrid not always revealing nodes 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/ui_lazy/ViewportDataGrid.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/ViewportDataGrid.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/ViewportDataGrid.js
index f928eca6939f49cf0988181564f437fee906530a..4ab5b32df933bb9f183028a2a8c38b9159cba7df 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/ViewportDataGrid.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/ViewportDataGrid.js
@@ -238,6 +238,7 @@ WebInspector.ViewportDataGrid = class extends WebInspector.DataGrid {
node.willAttach();
element.classList.toggle('odd', (offset + i) % 2 === 0);
tBody.insertBefore(element, previousElement.nextSibling);
+ node.revealed = true;
previousElement = element;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698