feat(webkit): roll to r1801 (#21183)

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 2023-02-24 06:34:37 -08:00 committed by GitHub
parent 7c6630b1a2
commit 5affd333a7
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",
"revision": "1799",
"revision": "1801",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446",

View File

@ -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('<html><title>Served by https server via proxy</title></html>');
});