| Index: chrome/browser/resources/print_preview/search/destination_search.js
|
| diff --git a/chrome/browser/resources/print_preview/search/destination_search.js b/chrome/browser/resources/print_preview/search/destination_search.js
|
| index 955984ac124100930ed67f8c13087a313adcfc9f..9baa9263dc46422b808162fa3c9180e2834ca203 100644
|
| --- a/chrome/browser/resources/print_preview/search/destination_search.js
|
| +++ b/chrome/browser/resources/print_preview/search/destination_search.js
|
| @@ -293,8 +293,8 @@ cr.define('print_preview', function() {
|
| getAvailableListsHeight_: function() {
|
| var elStyle = window.getComputedStyle(this.getElement());
|
| return this.getElement().offsetHeight -
|
| - parseInt(elStyle.getPropertyValue('padding-top')) -
|
| - parseInt(elStyle.getPropertyValue('padding-bottom')) -
|
| + parseInt(elStyle.getPropertyValue('padding-top'), 10) -
|
| + parseInt(elStyle.getPropertyValue('padding-bottom'), 10) -
|
| this.getChildElement('.lists').offsetTop -
|
| this.getChildElement('.invitation-container').offsetHeight -
|
| this.getChildElement('.cloudprint-promo').offsetHeight;
|
|
|