feat(webkit): roll to r1820 (#22083)
This commit is contained in:
parent
f96b24b2c5
commit
896a03e776
|
@ -33,7 +33,7 @@
|
|||
},
|
||||
{
|
||||
"name": "webkit",
|
||||
"revision": "1819",
|
||||
"revision": "1820",
|
||||
"installByDefault": true,
|
||||
"revisionOverrides": {
|
||||
"mac10.14": "1446",
|
||||
|
|
|
@ -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', () => {});
|
||||
|
|
Loading…
Reference in New Issue