feat(webkit): roll to r2080 (#32721)

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 2024-09-20 08:28:46 -07:00 committed by GitHub
parent cdcaa7fab6
commit 33890eb6c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 7 deletions

View file

@ -27,7 +27,7 @@
},
{
"name": "webkit",
"revision": "2079",
"revision": "2080",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446",

View file

@ -277,9 +277,7 @@ it('should work when service worker is intefering', async ({ page, context, serv
expect(storageState.origins[0].localStorage[0]).toEqual({ name: 'foo', value: 'bar' });
});
it('should set local storage in third-party context', async ({ contextFactory, server, browserName }) => {
it.fixme(browserName === 'webkit', 'look into setStorageBlockingPolicy');
it('should set local storage in third-party context', async ({ contextFactory, server }) => {
const context = await contextFactory({
storageState: {
cookies: [],
@ -303,9 +301,7 @@ it('should set local storage in third-party context', async ({ contextFactory, s
await context.close();
});
it('should roundtrip local storage in third-party context', async ({ page, contextFactory, server, browserName }) => {
it.fixme(browserName === 'webkit', 'look into setStorageBlockingPolicy');
it('should roundtrip local storage in third-party context', async ({ page, contextFactory, server }) => {
await page.goto(server.EMPTY_PAGE);
const frame = await attachFrame(page, 'frame1', server.CROSS_PROCESS_PREFIX + '/empty.html');
await frame.evaluate(() => window.localStorage.setItem('name1', 'value1'));