feat(chromium-tip-of-tree): roll to r1014 (#14742)

Co-authored-by: Max Schmitt <max@schmitt.mx>
This commit is contained in:
Playwright Service 2022-06-10 06:59:49 -07:00 committed by GitHub
parent e750d6e2e7
commit a98394033c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 7 deletions

View file

@ -15,9 +15,9 @@
},
{
"name": "chromium-tip-of-tree",
"revision": "1012",
"revision": "1014",
"installByDefault": false,
"browserVersion": "104.0.5098.0"
"browserVersion": "104.0.5110.0"
},
{
"name": "firefox",

View file

@ -63,7 +63,8 @@ it('should add cookies with empty value', async ({ context, page, server }) => {
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);
// @see https://en.wikipedia.org/wiki/Year_2038_problem
const date = +(new Date('1/1/2038'));

View file

@ -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);
// @see https://en.wikipedia.org/wiki/Year_2038_problem
const date = +(new Date('1/1/2038'));

View file

@ -126,7 +126,8 @@ it('should inherit viewport size from browser context', async function({ browser
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({
viewport: { width: 700, height: 700 }
});

View file

@ -173,7 +173,7 @@ it('rich text editable fields should have children', async function({ page, brow
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');
await page.setContent(`
@ -193,12 +193,15 @@ it('rich text editable fields with role should have children', async function({
name: '',
multiline: (browserName === 'chromium' && browserMajorVersion >= 92) ? true : undefined,
value: 'Edit this image: ',
children: [{
children: (chromiumVersionLessThan(browserVersion, '104.0.5106.0') && browserName === 'chromium') ? [{
role: 'text',
name: 'Edit this image:'
}, {
role: 'img',
name: 'my fake image'
}] : [{
role: 'text',
name: 'Edit this image:'
}]
};
const snapshot = await page.accessibility.snapshot();