| Index: chrome/browser/resources/md_downloads/item.js
|
| diff --git a/chrome/browser/resources/md_downloads/item.js b/chrome/browser/resources/md_downloads/item.js
|
| index 17e21b889245a6b1a99e61b6545f1916950bece6..fef60d58dd3e758b99fbe3d827b366318019f9f5 100644
|
| --- a/chrome/browser/resources/md_downloads/item.js
|
| +++ b/chrome/browser/resources/md_downloads/item.js
|
| @@ -80,7 +80,7 @@ cr.define('downloads', function() {
|
|
|
| /** @const */ var showProgress =
|
| isFinite(data.percent) && !this.isDangerous_;
|
| - this.$.progress.hidden = !showProgress;
|
| + this.$.content.classList.toggle('show-progress', showProgress);
|
|
|
| if (showProgress) {
|
| this.$.progress.indeterminate = data.percent < 0;
|
|
|