feat(webkit): roll to r1820 (#22083)

This commit is contained in:
Playwright Service 2023-03-30 01:03:16 -07:00 committed by GitHub
parent f96b24b2c5
commit 896a03e776
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

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

View File

@ -185,10 +185,11 @@ it('should work with Ctrl-clicking', async ({ browser, server, isMac, browserNam
await context.close();
});
it('should not hang on ctrl-click during provisional load', async ({ context, page, server, isMac, isWindows, browserName }) => {
it('should not hang on ctrl-click during provisional load', async ({ context, page, server, isMac, isWindows, browserName, isLinux }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/11595' });
it.skip(browserName === 'chromium', 'Chromium does not dispatch renderer messages while navigation is provisional.');
it.fixme(browserName === 'webkit' && isWindows, 'Timesout while trying to click');
it.fixme(browserName === 'webkit' && isLinux, 'Timesout while trying to click');
await page.goto(server.EMPTY_PAGE);
await page.setContent('<a href="/one-style.html">yo</a>');
server.setRoute('/slow.html', () => {});