feat(webkit): roll to r1872 (#24201)

Signed-off-by: Max Schmitt <max@schmitt.mx>
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-07-13 02:07:33 -07:00 committed by GitHub
parent 04be72213b
commit 7787988043
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

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

View File

@ -220,7 +220,6 @@ it('should add cookies from Set-Cookie header', async ({ context, page, server }
it('should preserve cookie order from Set-Cookie header', async ({ context, page, server, browserName, isLinux }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23390' });
it.fixme(browserName === 'webkit' && isLinux);
server.setRoute('/setcookie.html', (req, res) => {
res.setHeader('Set-Cookie', ['cookie.0=foo', 'cookie.1=bar']);
res.end();