From 7380c181ac36eb66d912652a39efe83b6475cbe3 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Mon, 4 Mar 2019 17:07:56 -0800 Subject: [PATCH] feat(chromium): roll Chromium to r637110 (#4099) This roll includes: - https://crrev.com/636867 - devtools: bump max number of devtools isolated worlds Fix #4011 --- lib/Launcher.js | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/Launcher.js b/lib/Launcher.js index de612c7905276..c860956ea64b5 100644 --- a/lib/Launcher.js +++ b/lib/Launcher.js @@ -45,7 +45,8 @@ const DEFAULT_ARGS = [ '--disable-dev-shm-usage', '--disable-extensions', // TODO: Support OOOPIF. @see https://github.com/GoogleChrome/puppeteer/issues/2548 - '--disable-features=site-per-process,TranslateUI', + // BlinkGenPropertyTrees disabled due to crbug.com/937609 + '--disable-features=site-per-process,TranslateUI,BlinkGenPropertyTrees', '--disable-hang-monitor', '--disable-ipc-flooding-protection', '--disable-popup-blocking', diff --git a/package.json b/package.json index 5b6cf3ee192fe..40b0480e23925 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "node": ">=6.4.0" }, "puppeteer": { - "chromium_revision": "630727" + "chromium_revision": "637110" }, "scripts": { "unit": "node test/test.js",