feat(webkit): roll WebKit to 1550 (#9239)

This commit is contained in:
Andrey Lushnikov 2021-09-30 10:41:09 -07:00 committed by GitHub
parent ceafa6548d
commit c63348bd03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 4 deletions

View File

@ -23,7 +23,7 @@
},
{
"name": "webkit",
"revision": "1548",
"revision": "1550",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446"

View File

@ -58,7 +58,6 @@ it('should report requests and responses handled by service worker', async ({ pa
});
it('should return response body when Cross-Origin-Opener-Policy is set', async ({ page, server, browserName }) => {
it.fail(browserName === 'webkit', 'https://github.com/microsoft/playwright/issues/8796');
server.setRoute('/empty.html', (req, res) => {
res.setHeader('Cross-Origin-Opener-Policy', 'same-origin');
res.end('Hello there!');

View File

@ -69,7 +69,6 @@ it('should work with cross-process that fails before committing', async ({ page,
});
it('should work with Cross-Origin-Opener-Policy', async ({ page, server, browserName }) => {
it.fail(browserName === 'webkit', 'https://github.com/microsoft/playwright/issues/8796');
server.setRoute('/empty.html', (req, res) => {
res.setHeader('Cross-Origin-Opener-Policy', 'same-origin');
res.end();
@ -101,7 +100,6 @@ it('should work with Cross-Origin-Opener-Policy', async ({ page, server, browser
});
it('should work with Cross-Origin-Opener-Policy after redirect', async ({ page, server, browserName }) => {
it.fail(browserName === 'webkit', 'https://github.com/microsoft/playwright/issues/8796');
server.setRedirect('/redirect', '/empty.html');
server.setRoute('/empty.html', (req, res) => {
res.setHeader('Cross-Origin-Opener-Policy', 'same-origin');