parent
b2a07c2675
commit
0eb7a09967
|
|
@ -884,3 +884,9 @@ it('page screenshot should capture css transform', async function({ page, browse
|
||||||
|
|
||||||
await expect(page).toHaveScreenshot();
|
await expect(page).toHaveScreenshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should capture css box-shadow', async ({ page }) => {
|
||||||
|
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/21620' });
|
||||||
|
await page.setContent(`<div style="box-shadow: red 10px 10px 10px; width: 50px; height: 50px;"></div>`);
|
||||||
|
await expect(page).toHaveScreenshot();
|
||||||
|
});
|
||||||
|
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 6.9 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 21 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
Loading…
Reference in a new issue