| Index: chrome/browser/resources/md_downloads/crisper.js
|
| diff --git a/chrome/browser/resources/md_downloads/crisper.js b/chrome/browser/resources/md_downloads/crisper.js
|
| index 2f7e325881752bbf74361bc34e28c6bcccff3cde..d6c638911acbb17d886eafe00f432bb8992da88e 100644
|
| --- a/chrome/browser/resources/md_downloads/crisper.js
|
| +++ b/chrome/browser/resources/md_downloads/crisper.js
|
| @@ -15345,6 +15345,9 @@ cr.define('downloads', function() {
|
| is: 'downloads-toolbar',
|
|
|
| attached: function() {
|
| + // isRTL() only works after i18n_template.js runs to set <html dir>.
|
| + this.overflowAlign_ = isRTL() ? 'left' : 'right';
|
| +
|
| /** @private {!SearchFieldDelegate} */
|
| this.searchFieldDelegate_ = new ToolbarSearchFieldDelegate(this);
|
| this.$['search-input'].setDelegate(this.searchFieldDelegate_);
|
| @@ -15357,6 +15360,11 @@ cr.define('downloads', function() {
|
| value: false,
|
| observer: 'onDownloadsShowingChange_',
|
| },
|
| +
|
| + overflowAlign_: {
|
| + type: String,
|
| + value: 'right',
|
| + },
|
| },
|
|
|
| /** @return {boolean} Whether removal can be undone. */
|
|
|