### Steps to reproduce **Tell us about your environment:** * Puppeteer version: 2.0 * Platform / OS version: MacOS 10.14 * URLs (if applicable): * Node.js version: 12.1.0 **What steps will reproduce the problem?** Using the `clip` option for `page.screenshot` with a scale of non `1` like: _Please include code that reproduces the issue._ ``` await page.screenshot({path: 'screenshot.png', clip: { x: 100, y: 100, width: 400, height: 400, scale: 2 }}); ``` **What is the expected result?** Scaling factor gets correctly forwarded to Chrome. **What happens instead?** Value is reset to `1` here: https://github.com/puppeteer/puppeteer/blob/eddb23b52175a3dad8cec4a5e9b3c13e58f6f144/lib/Page.js#L968