[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.
This commit is contained in:
Andrey Lushnikov 2017-09-27 10:37:31 +09:00 committed by GitHub
parent 0164b7cc4e
commit 72161c475d
2 changed files with 3 additions and 1 deletions

View File

@ -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',

View File

@ -33,7 +33,7 @@
"ws": "^3.0.0"
},
"puppeteer": {
"chromium_revision": "499413"
"chromium_revision": "503964"
},
"devDependencies": {
"commonmark": "^0.27.0",