feat(chromium): roll Chromium to r782078 (#6250)

This corresponds to Chromium 85.0.4182.0.

This roll includes: 
- Enable SameSiteByDefaultCookies and CookiesWithoutSameSiteMustBeSecure
   https://crrev.com/c/2231445
- [FlexNG] Enable FlexNG by default
   https://crrev.com/c/2216595

Closes #6151.
This commit is contained in:
Johan Bay
2020-07-20 17:17:06 +02:00
committed by GitHub
parent b2f69183aa
commit e89e264a16
225 changed files with 1897 additions and 121 deletions

View File

@@ -49,7 +49,7 @@ describe('ElementHandle specs', function () {
const elementHandle = await nestedFrame.$('div');
const box = await elementHandle.boundingBox();
if (isChrome)
expect(box).toEqual({ x: 28, y: 260, width: 264, height: 18 });
expect(box).toEqual({ x: 28, y: 182, width: 264, height: 18 });
else expect(box).toEqual({ x: 28, y: 182, width: 254, height: 18 });
});
it('should return null for invisible elements', async () => {