mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): roll to r1820 (#22083)
This commit is contained in:
parent
f96b24b2c5
commit
896a03e776
@ -33,7 +33,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1819",
|
"revision": "1820",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446",
|
"mac10.14": "1446",
|
||||||
|
@ -185,10 +185,11 @@ it('should work with Ctrl-clicking', async ({ browser, server, isMac, browserNam
|
|||||||
await context.close();
|
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.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.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' && isWindows, 'Timesout while trying to click');
|
||||||
|
it.fixme(browserName === 'webkit' && isLinux, 'Timesout while trying to click');
|
||||||
await page.goto(server.EMPTY_PAGE);
|
await page.goto(server.EMPTY_PAGE);
|
||||||
await page.setContent('<a href="/one-style.html">yo</a>');
|
await page.setContent('<a href="/one-style.html">yo</a>');
|
||||||
server.setRoute('/slow.html', () => {});
|
server.setRoute('/slow.html', () => {});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user