feat(chromium): roll Chromium to r759486 (#1823)

This roll includes:
- https://crrev.com/759486 - devtools(protocol): Input.dispatchMouseEvent to properly find target widget host

Fixes #1240
This commit is contained in:
Andrey Lushnikov 2020-04-16 09:38:28 -07:00 committed by GitHub
parent 69a9867e9e
commit 26018aae25
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 @@
}, },
"main": "index.js", "main": "index.js",
"playwright": { "playwright": {
"chromium_revision": "754895", "chromium_revision": "759546",
"firefox_revision": "1082", "firefox_revision": "1082",
"webkit_revision": "1197" "webkit_revision": "1197"
}, },

View File

@ -152,7 +152,7 @@ describe('OOPIF', function() {
expect(await countOOPIFs(browser)).toBe(1); expect(await countOOPIFs(browser)).toBe(1);
}); });
// @see https://github.com/microsoft/playwright/issues/1240 // @see https://github.com/microsoft/playwright/issues/1240
it.fail(CHROMIUM)('should click a button when it overlays oopif', async function({browser, page, server, context}) { it('should click a button when it overlays oopif', async function({browser, page, server, context}) {
await page.goto(server.PREFIX + '/button-overlay-oopif.html'); await page.goto(server.PREFIX + '/button-overlay-oopif.html');
expect(await countOOPIFs(browser)).toBe(1); expect(await countOOPIFs(browser)).toBe(1);
await page.click('button'); await page.click('button');