feat(chromium-tip-of-tree): roll to r1023 (#15447)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Max Schmitt <max@schmitt.mx>
This commit is contained in:
parent
767babc3a2
commit
adf03eaa4c
|
|
@ -15,9 +15,9 @@
|
|||
},
|
||||
{
|
||||
"name": "chromium-tip-of-tree",
|
||||
"revision": "1019",
|
||||
"revision": "1023",
|
||||
"installByDefault": false,
|
||||
"browserVersion": "105.0.5147.0"
|
||||
"browserVersion": "105.0.5165.0"
|
||||
},
|
||||
{
|
||||
"name": "firefox",
|
||||
|
|
|
|||
|
|
@ -261,6 +261,7 @@ it.skip('should click bottom row w/ infobar in OOPIF', async ({ browserType, cre
|
|||
it('headless and headful should use same default fonts', async ({ page, headless, browserName, browserType, platform }) => {
|
||||
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/11177' });
|
||||
it.fixme(browserName === 'firefox', 'Text is misaligned in headed vs headless');
|
||||
it.fixme(browserName === 'chromium' && process.platform === 'darwin', 'https://crbug.com/1342540');
|
||||
const genericFontFamilies = [
|
||||
'standard',
|
||||
'serif',
|
||||
|
|
|
|||
|
|
@ -51,7 +51,8 @@ it.describe('element screenshot', () => {
|
|||
expect(screenshot).toMatchSnapshot('screenshot-element-padding-border.png');
|
||||
});
|
||||
|
||||
it('should capture full element when larger than viewport in parallel', async ({ page }) => {
|
||||
it('should capture full element when larger than viewport in parallel', async ({ page, browserName }) => {
|
||||
it.fixme(browserName === 'chromium' && process.platform === 'darwin', 'https://crbug.com/1342540');
|
||||
await page.setViewportSize({ width: 500, height: 500 });
|
||||
|
||||
await page.setContent(`
|
||||
|
|
|
|||
|
|
@ -33,7 +33,8 @@ it.describe('page screenshot', () => {
|
|||
expect(screenshot).toMatchSnapshot('screenshot-sanity.png');
|
||||
});
|
||||
|
||||
it('should not capture blinking caret by default', async ({ page, server }) => {
|
||||
it('should not capture blinking caret by default', async ({ page, server, browserName }) => {
|
||||
it.fixme(browserName === 'chromium' && process.platform === 'darwin', 'https://crbug.com/1342540');
|
||||
await page.setContent(`
|
||||
<!-- Refer to stylesheet from other origin. Accessing this
|
||||
stylesheet rules will throw.
|
||||
|
|
|
|||
Loading…
Reference in a new issue