feat(chromium-tip-of-tree): roll to r1014 (#14742)
Co-authored-by: Max Schmitt <max@schmitt.mx>
This commit is contained in:
parent
e750d6e2e7
commit
a98394033c
|
|
@ -15,9 +15,9 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "chromium-tip-of-tree",
|
"name": "chromium-tip-of-tree",
|
||||||
"revision": "1012",
|
"revision": "1014",
|
||||||
"installByDefault": false,
|
"installByDefault": false,
|
||||||
"browserVersion": "104.0.5098.0"
|
"browserVersion": "104.0.5110.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "firefox",
|
"name": "firefox",
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,8 @@ it('should add cookies with empty value', async ({ context, page, server }) => {
|
||||||
expect(await page.evaluate(() => document.cookie)).toEqual('marker=');
|
expect(await page.evaluate(() => document.cookie)).toEqual('marker=');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should roundtrip cookie', async ({ context, page, server }) => {
|
it('should roundtrip cookie', async ({ context, page, server, channel }) => {
|
||||||
|
it.fixme(channel === 'chromium-tip-of-tree', 'https://github.com/microsoft/playwright/issues/14725');
|
||||||
await page.goto(server.EMPTY_PAGE);
|
await page.goto(server.EMPTY_PAGE);
|
||||||
// @see https://en.wikipedia.org/wiki/Year_2038_problem
|
// @see https://en.wikipedia.org/wiki/Year_2038_problem
|
||||||
const date = +(new Date('1/1/2038'));
|
const date = +(new Date('1/1/2038'));
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,8 @@ it('should get a cookie @smoke', async ({ context, page, server, defaultSameSite
|
||||||
}]);
|
}]);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should get a non-session cookie', async ({ context, page, server, defaultSameSiteCookieValue, browserName, browserMajorVersion }) => {
|
it('should get a non-session cookie', async ({ context, page, server, defaultSameSiteCookieValue, channel }) => {
|
||||||
|
it.fixme(channel === 'chromium-tip-of-tree', 'https://github.com/microsoft/playwright/issues/14725');
|
||||||
await page.goto(server.EMPTY_PAGE);
|
await page.goto(server.EMPTY_PAGE);
|
||||||
// @see https://en.wikipedia.org/wiki/Year_2038_problem
|
// @see https://en.wikipedia.org/wiki/Year_2038_problem
|
||||||
const date = +(new Date('1/1/2038'));
|
const date = +(new Date('1/1/2038'));
|
||||||
|
|
|
||||||
|
|
@ -126,7 +126,8 @@ it('should inherit viewport size from browser context', async function({ browser
|
||||||
expect(size).toEqual({ width: 400, height: 500 });
|
expect(size).toEqual({ width: 400, height: 500 });
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should use viewport size from window features', async function({ browser, server }) {
|
it('should use viewport size from window features', async function({ browser, server, channel }) {
|
||||||
|
it.fixme(channel === 'chromium-tip-of-tree', 'https://github.com/microsoft/playwright/issues/14787');
|
||||||
const context = await browser.newContext({
|
const context = await browser.newContext({
|
||||||
viewport: { width: 700, height: 700 }
|
viewport: { width: 700, height: 700 }
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -173,7 +173,7 @@ it('rich text editable fields should have children', async function({ page, brow
|
||||||
expect(snapshot.children[0]).toEqual(golden);
|
expect(snapshot.children[0]).toEqual(golden);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('rich text editable fields with role should have children', async function({ page, browserName, browserMajorVersion }) {
|
it('rich text editable fields with role should have children', async function({ page, browserName, browserMajorVersion, browserVersion }) {
|
||||||
it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy');
|
it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy');
|
||||||
|
|
||||||
await page.setContent(`
|
await page.setContent(`
|
||||||
|
|
@ -193,12 +193,15 @@ it('rich text editable fields with role should have children', async function({
|
||||||
name: '',
|
name: '',
|
||||||
multiline: (browserName === 'chromium' && browserMajorVersion >= 92) ? true : undefined,
|
multiline: (browserName === 'chromium' && browserMajorVersion >= 92) ? true : undefined,
|
||||||
value: 'Edit this image: ',
|
value: 'Edit this image: ',
|
||||||
children: [{
|
children: (chromiumVersionLessThan(browserVersion, '104.0.5106.0') && browserName === 'chromium') ? [{
|
||||||
role: 'text',
|
role: 'text',
|
||||||
name: 'Edit this image:'
|
name: 'Edit this image:'
|
||||||
}, {
|
}, {
|
||||||
role: 'img',
|
role: 'img',
|
||||||
name: 'my fake image'
|
name: 'my fake image'
|
||||||
|
}] : [{
|
||||||
|
role: 'text',
|
||||||
|
name: 'Edit this image:'
|
||||||
}]
|
}]
|
||||||
};
|
};
|
||||||
const snapshot = await page.accessibility.snapshot();
|
const snapshot = await page.accessibility.snapshot();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue