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

Unified Diff: chrome/browser/resources/task_manager/main.js

Issue 9288017: WebUI TaskManager: Use the specified height of row on refleshing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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: chrome/browser/resources/task_manager/main.js
diff --git a/chrome/browser/resources/task_manager/main.js b/chrome/browser/resources/task_manager/main.js
index 5beea99777d055251500958addfd7b3921528221..0de203e0cd00ec80c8835a5cf83e7aba6a6745d8 100644
--- a/chrome/browser/resources/task_manager/main.js
+++ b/chrome/browser/resources/task_manager/main.js
@@ -498,6 +498,7 @@ TaskManager.prototype = {
// Stores the cell element to the dictionary.
this.elementsCache_[pid].cell[i] = cell;
}
+ listItem.style.height = (data['uniqueId'].length * 20) + 'px';
mazda 2012/01/26 09:37:16 What is this change intended for?
yoshiki 2012/01/26 10:10:45 I added an additional information as comment. Is i
listItem.data = data;
// Stores the list item element, the number of columns and the number of

Powered by Google App Engine
This is Rietveld 408576698