| Index: third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeModel.js b/third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeModel.js
|
| index 34e83066b32f0ef18181e25324bbedf32384a6fb..200f54aad3390e4c6242caf954c9a58d73ba48b5 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeModel.js
|
| @@ -652,7 +652,7 @@ Emulation.DeviceModeModel = class {
|
| }));
|
| promises.push(this._target.emulationAgent().setVisibleSize(
|
| Math.floor(scaledPageSize.width), Math.floor(scaledPageSize.height)));
|
| - Promise.all(promises).then(() => screenCaptureModel.captureScreenshot('png', 100)).then(content => {
|
| + Promise.all(promises).then(() => screenCaptureModel.captureScreenshot('png', 100, false)).then(content => {
|
| this._target.emulationAgent().setVisibleSize(this._emulatedPageSize.width, this._emulatedPageSize.height);
|
| this._target.emulationAgent().resetViewport();
|
| callback(content);
|
|
|