feat(chromium-tip-of-tree): roll to r1046 (#17653)

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:
Playwright Service 2022-09-28 03:13:07 -07:00 committed by GitHub
parent 704ff5fda3
commit 7896346810
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -15,9 +15,9 @@
},
{
"name": "chromium-tip-of-tree",
"revision": "1044",
"revision": "1046",
"installByDefault": false,
"browserVersion": "108.0.5311.0"
"browserVersion": "108.0.5325.0"
},
{
"name": "firefox",

View File

@ -141,7 +141,7 @@ it('should not report text nodes inside controls', async function({ page, browse
expect(await page.accessibility.snapshot()).toEqual(golden);
});
it('rich text editable fields should have children', async function({ page, browserName }) {
it('rich text editable fields should have children', async function({ page, browserName, browserVersion }) {
it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy');
await page.setContent(`
@ -164,7 +164,7 @@ it('rich text editable fields should have children', async function({ page, brow
value: 'Edit this image: ',
children: [{
role: 'text',
name: 'Edit this image:'
name: chromiumVersionLessThan(browserVersion, '108.0.5325.0') ? 'Edit this image:' : 'Edit this image: '
}, {
role: 'img',
name: 'my fake image'
@ -202,7 +202,7 @@ it('rich text editable fields with role should have children', async function({
name: 'my fake image'
}] : [{
role: 'text',
name: 'Edit this image:'
name: chromiumVersionLessThan(browserVersion, '108.0.5325.0') ? 'Edit this image:' : 'Edit this image: '
}]
};
const snapshot = await page.accessibility.snapshot();