Index: chrome/browser/resources/shared/js/cr/ui/table.js |
diff --git a/chrome/browser/resources/shared/js/cr/ui/table.js b/chrome/browser/resources/shared/js/cr/ui/table.js |
index 416058b6ec1e927355355b38d126de844fe11175..8546c903e86e65289cbabd56f22805039e5558d5 100644 |
--- a/chrome/browser/resources/shared/js/cr/ui/table.js |
+++ b/chrome/browser/resources/shared/js/cr/ui/table.js |
@@ -109,6 +109,13 @@ cr.define('cr.ui', function() { |
this.list_.autoExpands = autoExpands; |
}, |
+ get fixedHeight() { |
+ return this.list_.fixedHeight; |
+ }, |
+ set fixedHeight(fixedHeight) { |
+ this.list_.fixedHeight = fixedHeight; |
+ }, |
+ |
/** |
* Returns render function for row. |
* @return {Function(*, cr.ui.Table): HTMLElement} Render function. |