| 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 1d54473586aed1e2c199f320bbc6520465d5a59e..d3b5856dac08123fcc10a36501492c4aa88b7734 100644
|
| --- a/chrome/browser/resources/print_preview/search/destination_search.js
|
| +++ b/chrome/browser/resources/print_preview/search/destination_search.js
|
| @@ -256,8 +256,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('.cloudprint-promo').offsetHeight;
|
| },
|
|
|