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:
parent
704ff5fda3
commit
7896346810
|
|
@ -15,9 +15,9 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "chromium-tip-of-tree",
|
"name": "chromium-tip-of-tree",
|
||||||
"revision": "1044",
|
"revision": "1046",
|
||||||
"installByDefault": false,
|
"installByDefault": false,
|
||||||
"browserVersion": "108.0.5311.0"
|
"browserVersion": "108.0.5325.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "firefox",
|
"name": "firefox",
|
||||||
|
|
|
||||||
|
|
@ -141,7 +141,7 @@ it('should not report text nodes inside controls', async function({ page, browse
|
||||||
expect(await page.accessibility.snapshot()).toEqual(golden);
|
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');
|
it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy');
|
||||||
|
|
||||||
await page.setContent(`
|
await page.setContent(`
|
||||||
|
|
@ -164,7 +164,7 @@ it('rich text editable fields should have children', async function({ page, brow
|
||||||
value: 'Edit this image: ',
|
value: 'Edit this image: ',
|
||||||
children: [{
|
children: [{
|
||||||
role: 'text',
|
role: 'text',
|
||||||
name: 'Edit this image:'
|
name: chromiumVersionLessThan(browserVersion, '108.0.5325.0') ? 'Edit this image:' : 'Edit this image: '
|
||||||
}, {
|
}, {
|
||||||
role: 'img',
|
role: 'img',
|
||||||
name: 'my fake image'
|
name: 'my fake image'
|
||||||
|
|
@ -202,7 +202,7 @@ it('rich text editable fields with role should have children', async function({
|
||||||
name: 'my fake image'
|
name: 'my fake image'
|
||||||
}] : [{
|
}] : [{
|
||||||
role: 'text',
|
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();
|
const snapshot = await page.accessibility.snapshot();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue