| Index: chrome/browser/resources/print_preview/settings/advanced_settings/advanced_settings.js
|
| diff --git a/chrome/browser/resources/print_preview/settings/advanced_settings/advanced_settings.js b/chrome/browser/resources/print_preview/settings/advanced_settings/advanced_settings.js
|
| index b4f5cc644cca19d5faccb65cab2a84d625372fca..b98a3940e29d3f9e39d040e9b1ae567dbf4eee50 100644
|
| --- a/chrome/browser/resources/print_preview/settings/advanced_settings/advanced_settings.js
|
| +++ b/chrome/browser/resources/print_preview/settings/advanced_settings/advanced_settings.js
|
| @@ -123,8 +123,8 @@ cr.define('print_preview', function() {
|
| getAvailableContentHeight_: 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('.settings-area').offsetTop -
|
| this.getChildElement('.action-area').offsetHeight;
|
| },
|
|
|