From 69d328db4de1dc8b1a4828fe4eefd21f81026091 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Fri, 28 Sep 2018 13:26:22 -0700 Subject: [PATCH] core(emulation): set desktop viewport to 1350x940 (#6131) --- lighthouse-core/lib/emulation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lighthouse-core/lib/emulation.js b/lighthouse-core/lib/emulation.js index cb257b7e1864..499842c1a1ea 100644 --- a/lighthouse-core/lib/emulation.js +++ b/lighthouse-core/lib/emulation.js @@ -33,8 +33,8 @@ const NEXUS5X_EMULATION_METRICS = { */ const DESKTOP_EMULATION_METRICS = { mobile: false, - width: 1366, - height: 768, + width: 1350, + height: 940, deviceScaleFactor: 1, };