feat(webkit): roll to r1773 (#20342)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Yury Semikhatsky <yurys@chromium.org>
This commit is contained in:
Playwright Service 2023-01-25 01:03:50 -08:00 committed by GitHub
parent 112c7bda45
commit 00edf587d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -52,10 +52,10 @@ it('should work', async ({ page, server }) => {
}); });
it('should work with buffer as body', async ({ page, server, browserName, isLinux }) => { it('should work with buffer as body', async ({ page, server, browserName, isLinux }) => {
it.fail(browserName === 'webkit' && isLinux, 'Loading of application/octet-stream resource fails');
await page.route('**/*', route => { await page.route('**/*', route => {
route.fulfill({ route.fulfill({
status: 200, status: 200,
contentType: 'text/plain',
body: Buffer.from('Yo, page!') body: Buffer.from('Yo, page!')
}); });
}); });