feat(webkit): roll to r1905 (#26909)

This commit is contained in:
Playwright Service 2023-09-06 22:41:46 -07:00 committed by GitHub
parent 7fa16d2230
commit bcf59ed721
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 12 deletions

View File

@ -39,7 +39,7 @@
},
{
"name": "webkit",
"revision": "1904",
"revision": "1905",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446",

View File

@ -283,7 +283,6 @@ export const deps: any = {
'libpango-1.0-0',
'libpng16-16',
'libsecret-1-0',
'libsoup2.4-1',
'libvpx6',
'libwayland-client0',
'libwayland-egl1',
@ -364,7 +363,6 @@ export const deps: any = {
'libpng16.so.16': 'libpng16-16',
'libsecret-1.so.0': 'libsecret-1-0',
'libsmime3.so': 'libnss3',
'libsoup-2.4.so.1': 'libsoup2.4-1',
'libvpx.so.6': 'libvpx6',
'libwayland-client.so.0': 'libwayland-client0',
'libwayland-egl.so.1': 'libwayland-egl1',
@ -507,7 +505,6 @@ export const deps: any = {
'libpng16-16',
'libproxy1v5',
'libsecret-1-0',
'libsoup2.4-1',
'libwayland-client0',
'libwayland-egl1',
'libwayland-server0',
@ -580,7 +577,6 @@ export const deps: any = {
'libproxy.so.1': 'libproxy1v5',
'libsecret-1.so.0': 'libsecret-1-0',
'libsmime3.so': 'libnss3',
'libsoup-2.4.so.1': 'libsoup2.4-1',
'libwayland-client.so.0': 'libwayland-client0',
'libwayland-egl.so.1': 'libwayland-egl1',
'libwayland-server.so.0': 'libwayland-server0',
@ -722,7 +718,6 @@ export const deps: any = {
'libpng16-16',
'libproxy1v5',
'libsecret-1-0',
'libsoup2.4-1',
'libwayland-client0',
'libwayland-egl1',
'libwayland-server0',
@ -797,7 +792,6 @@ export const deps: any = {
'libproxy.so.1': 'libproxy1v5',
'libsecret-1.so.0': 'libsecret-1-0',
'libsmime3.so': 'libnss3',
'libsoup-2.4.so.1': 'libsoup2.4-1',
'libwayland-client.so.0': 'libwayland-client0',
'libwayland-egl.so.1': 'libwayland-egl1',
'libwayland-server.so.0': 'libwayland-server0',
@ -931,7 +925,6 @@ export const deps: any = {
'libpng16-16',
'libproxy1v5',
'libsecret-1-0',
'libsoup2.4-1',
'libwayland-client0',
'libwayland-egl1',
'libwayland-server0',

View File

@ -17,7 +17,6 @@
import os from 'os';
import url from 'url';
import { contextTest as it, expect } from '../config/browserTest';
const { hostPlatform } = require('playwright-core/lib/utils');
it('SharedArrayBuffer should work @smoke', async function({ contextFactory, httpsServer, browserName }) {
it.fail(browserName === 'webkit', 'no shared array buffer on webkit');
@ -274,7 +273,6 @@ it('requestFullscreen', async ({ page, server, browserName, headless, isLinux })
it('should send no Content-Length header for GET requests with a Content-Type', async ({ page, server, browserName }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/22569' });
it.skip(browserName === 'webkit' && (hostPlatform.startsWith('ubuntu20.04') || hostPlatform.startsWith('debian11')), 'libsoup2.4 has a bug for this');
await page.goto(server.EMPTY_PAGE);
const [request] = await Promise.all([
server.waitForRequest('/empty.html'),

View File

@ -23,7 +23,6 @@ import type { BrowserContext, BrowserContextOptions } from 'playwright-core';
import type { AddressInfo } from 'net';
import type { Log } from '../../packages/trace/src/har';
import { parseHar } from '../config/utils';
const { hostPlatform } = require('playwright-core/lib/utils');
async function pageWithHar(contextFactory: (options?: BrowserContextOptions) => Promise<BrowserContext>, testInfo: any, options: { outputPath?: string, content?: 'embed' | 'attach' | 'omit', omitContent?: boolean } = {}) {
const harPath = testInfo.outputPath(options.outputPath || 'test.har');
@ -673,7 +672,6 @@ it('should return security details directly from response', async ({ contextFact
});
it('should contain http2 for http2 requests', async ({ contextFactory, browserName, platform }, testInfo) => {
it.skip(browserName === 'webkit' && platform === 'linux' && (hostPlatform.startsWith('ubuntu20.04') || hostPlatform.startsWith('debian11')), 'libsoup2.4 does not support http2');
it.fixme(browserName === 'webkit' && platform === 'win32');
const server = http2.createSecureServer({