| Index: chrome/browser/resources/print_preview/margins_ui.js
|
| diff --git a/chrome/browser/resources/print_preview/margins_ui.js b/chrome/browser/resources/print_preview/margins_ui.js
|
| index 53786632975d27977f5024a247f590dec8b69f1d..994c46608f9a3e3447047b7bfe94a8643e61f0ba 100644
|
| --- a/chrome/browser/resources/print_preview/margins_ui.js
|
| +++ b/chrome/browser/resources/print_preview/margins_ui.js
|
| @@ -79,7 +79,7 @@ cr.define('print_preview', function() {
|
|
|
| /**
|
| * Updates the state of the margins UI.
|
| - * @param {print_preview.Rect}
|
| + * @param {print_preview.Rect} marginsRectangle
|
| * @param {Margins} marginValues
|
| * @param {array} valueLimits
|
| */
|
| @@ -129,7 +129,7 @@ cr.define('print_preview', function() {
|
| applyClippingMask_: function() {
|
| var bottom = previewArea.height;
|
| var right = previewArea.width;
|
| - this.style.clip = "rect(0, " + right + "px, " + bottom + "px, 0)";
|
| + this.style.clip = 'rect(0, ' + right + 'px, ' + bottom + 'px, 0)';
|
| },
|
|
|
| /**
|
|
|