mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
feat(chromium): roll Chromium to r648643 (#4256)
This roll includes: - https://crrev.com/648335 - [DevTools] Send DevTools request ID through URLLoader - https://crrev.com/648360 - [DevTools] Add renderer request ID to requestIntercepted References #3471
This commit is contained in:
parent
080b80975f
commit
9d31068225
@ -49,6 +49,8 @@ const DEFAULT_ARGS = [
|
||||
'--disable-features=site-per-process,TranslateUI,BlinkGenPropertyTrees',
|
||||
'--disable-hang-monitor',
|
||||
'--disable-ipc-flooding-protection',
|
||||
// TODO: Perfetto is disabled due to crbug.com/950620
|
||||
'--disable-perfetto',
|
||||
'--disable-popup-blocking',
|
||||
'--disable-prompt-on-repost',
|
||||
'--disable-renderer-backgrounding',
|
||||
|
@ -8,7 +8,7 @@
|
||||
"node": ">=6.4.0"
|
||||
},
|
||||
"puppeteer": {
|
||||
"chromium_revision": "647475"
|
||||
"chromium_revision": "648643"
|
||||
},
|
||||
"scripts": {
|
||||
"unit": "node test/test.js",
|
||||
|
@ -366,6 +366,8 @@ module.exports.addTests = function({testRunner, expect, headless, Errors, Device
|
||||
expect(message.type()).toEqual('warn');
|
||||
});
|
||||
it_fails_ffox('should have location when fetch fails', async({page, server}) => {
|
||||
// The point of this test is to make sure that we report console messages from
|
||||
// Log domain: https://vanilla.aslushnikov.com/?Log.entryAdded
|
||||
await page.goto(server.EMPTY_PAGE);
|
||||
const [message] = await Promise.all([
|
||||
waitEvent(page, 'console'),
|
||||
|
Loading…
Reference in New Issue
Block a user