diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index b9f8a11d68..dc8e26481d 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -33,7 +33,7 @@ }, { "name": "webkit", - "revision": "1799", + "revision": "1801", "installByDefault": true, "revisionOverrides": { "mac10.14": "1446", diff --git a/tests/library/browsercontext-proxy.spec.ts b/tests/library/browsercontext-proxy.spec.ts index b73138b1b9..e1c74a552b 100644 --- a/tests/library/browsercontext-proxy.spec.ts +++ b/tests/library/browsercontext-proxy.spec.ts @@ -210,8 +210,7 @@ it('should use proxy for second page', async ({ contextFactory, server, proxySer await context.close(); }); -it('should use proxy for https urls', async ({ contextFactory, httpsServer, proxyServer, isWindows, browserName }) => { - it.fixme(browserName === 'webkit' && isWindows, 'Fixed upstream, https://github.com/microsoft/playwright/issues/20822'); +it('should use proxy for https urls', async ({ contextFactory, httpsServer, proxyServer }) => { httpsServer.setRoute('/target.html', async (req, res) => { res.end('Served by https server via proxy'); });