mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): roll to r1735 (#18419)
This commit is contained in:
parent
e725293586
commit
2d07c10888
@ -33,7 +33,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1728",
|
"revision": "1735",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446",
|
"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('should not hit scroll bar', async ({ page, browserName, platform }) => {
|
||||||
it.fixme(browserName === 'webkit' && platform === 'darwin');
|
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 === '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(`
|
await page.setContent(`
|
||||||
<style>
|
<style>
|
||||||
|
@ -226,8 +226,9 @@ it.describe('page screenshot', () => {
|
|||||||
await verifyViewport(page, 500, 500);
|
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.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.setViewportSize({ width: 50, height: 150 });
|
||||||
await page.setContent(`
|
await page.setContent(`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user