| Index: chrome/browser/resources/print_preview/common/search_box.js
|
| diff --git a/chrome/browser/resources/print_preview/common/search_box.js b/chrome/browser/resources/print_preview/common/search_box.js
|
| index f9efd30264dc6dbeb51b0cfccd51eedc69db3de7..836bddb268aed844d9cbd3de442fdd50e743ad5a 100644
|
| --- a/chrome/browser/resources/print_preview/common/search_box.js
|
| +++ b/chrome/browser/resources/print_preview/common/search_box.js
|
| @@ -66,7 +66,8 @@ cr.define('print_preview', function() {
|
| createDom: function() {
|
| this.setElementInternal(this.cloneTemplateInternal(
|
| 'search-box-template'));
|
| - this.input_ = this.getChildElement('.search-box-input');
|
| + this.input_ = assertInstanceof(this.getChildElement('.search-box-input'),
|
| + HTMLInputElement);
|
| this.input_.setAttribute('placeholder', this.searchBoxPlaceholderText_);
|
| },
|
|
|
|
|