feat(chromium): roll Chromium to r656675 (#4389)

This roll includes:
- https://chromium-review.googlesource.com/c/v8/v8/+/1569425 - [debug] Introduce GetCreationContext to debug API

Fix #4263
This commit is contained in:
Andrey Lushnikov 2019-05-06 00:22:18 -07:00 committed by GitHub
parent 1de9906260
commit 13f73b5b3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
"node": ">=6.4.0"
},
"puppeteer": {
"chromium_revision": "654752"
"chromium_revision": "656675"
},
"scripts": {
"unit": "node test/test.js",

View File

@ -286,7 +286,7 @@ module.exports.addTests = function({testRunner, expect, headless, puppeteer, CHR
const values = await page.evaluate(objects => Array.from(objects[0].values()), objectsHandle);
expect(values).toEqual(['hello', 'world']);
});
xit('should work for non-blank page', async({page, server}) => {
it('should work for non-blank page', async({page, server}) => {
// Instantiate an object
await page.goto(server.EMPTY_PAGE);
await page.evaluate(() => window.set = new Set(['hello', 'world']));