feat(webkit): roll to r1704 (#16628)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Max Schmitt <max@schmitt.mx>
This commit is contained in:
Playwright Service 2022-08-18 01:55:11 -07:00 committed by GitHub
parent 4a04d8d0b0
commit 3843a15d5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -33,7 +33,7 @@
}, },
{ {
"name": "webkit", "name": "webkit",
"revision": "1703", "revision": "1704",
"installByDefault": true, "installByDefault": true,
"revisionOverrides": { "revisionOverrides": {
"mac10.14": "1446", "mac10.14": "1446",

View File

@ -241,9 +241,8 @@ it('should always round down', async ({ page }) => {
expect(await page.evaluate('result')).toEqual([50, 50]); expect(await page.evaluate('result')).toEqual([50, 50]);
}); });
it('should not crash on mouse drag with any button', async ({ page, browserName, isMac }) => { it('should not crash on mouse drag with any button', async ({ page }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/16609' }); it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/16609' });
it.fixme(isMac && browserName === 'webkit');
for (const button of ['left', 'middle', 'right'] as const) { for (const button of ['left', 'middle', 'right'] as const) {
await page.mouse.move(50, 50); await page.mouse.move(50, 50);
await page.mouse.down({ button }); await page.mouse.down({ button });