feat(webkit): roll to r1735 (#18419)
This commit is contained in:
Родитель
e725293586
Коммит
2d07c10888
|
@ -33,7 +33,7 @@
|
|||
},
|
||||
{
|
||||
"name": "webkit",
|
||||
"revision": "1728",
|
||||
"revision": "1735",
|
||||
"installByDefault": true,
|
||||
"revisionOverrides": {
|
||||
"mac10.14": "1446",
|
||||
|
|
|
@ -19,6 +19,7 @@ import { expect, test as it } from './pageTest';
|
|||
it('should not hit scroll bar', async ({ page, browserName, platform }) => {
|
||||
it.fixme(browserName === 'webkit' && platform === 'darwin');
|
||||
it.fixme(browserName === 'webkit' && platform === 'linux', 'Fails in headless and in headful on Ubuntu 22.04');
|
||||
it.fixme(browserName === 'webkit' && platform === 'win32', 'https://github.com/microsoft/playwright/issues/18452');
|
||||
|
||||
await page.setContent(`
|
||||
<style>
|
||||
|
|
|
@ -226,8 +226,9 @@ it.describe('page screenshot', () => {
|
|||
await verifyViewport(page, 500, 500);
|
||||
});
|
||||
|
||||
it('should allow transparency', async ({ page, browserName }) => {
|
||||
it('should allow transparency', async ({ page, browserName, platform }) => {
|
||||
it.fail(browserName === 'firefox');
|
||||
it.fixme(browserName === 'webkit' && platform === 'win32', 'https://github.com/microsoft/playwright/issues/18452');
|
||||
|
||||
await page.setViewportSize({ width: 50, height: 150 });
|
||||
await page.setContent(`
|
||||
|
|
Загрузка…
Ссылка в новой задаче