From 72161c475d62a8223dc6da8b89f4a3d65a9df48b Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 27 Sep 2017 10:37:31 +0900 Subject: [PATCH] [roll] Roll chromium to r503964 (#878) This patch rolls chromium to r503964. Note: since the plznavigate is not supported by puppeteer right now, the patch also starts passing the `--disable-browser-side-navigation` flag. This is a temporary work around for us. References #877. --- lib/Launcher.js | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Launcher.js b/lib/Launcher.js index c3a5ec486d7..770914c8a56 100644 --- a/lib/Launcher.js +++ b/lib/Launcher.js @@ -30,6 +30,8 @@ const CHROME_PROFILE_PATH = path.join(os.tmpdir(), 'puppeteer_dev_profile-'); const DEFAULT_ARGS = [ '--disable-background-networking', '--disable-background-timer-throttling', + // TODO(aslushnikov): this flag should be removed. @see https://github.com/GoogleChrome/puppeteer/issues/877 + '--disable-browser-side-navigation', '--disable-client-side-phishing-detection', '--disable-default-apps', '--disable-extensions', diff --git a/package.json b/package.json index ef2e6204197..77be8a1fe20 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "ws": "^3.0.0" }, "puppeteer": { - "chromium_revision": "499413" + "chromium_revision": "503964" }, "devDependencies": { "commonmark": "^0.27.0",