mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
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",
|
||||
"revision": "1044",
|
||||
"revision": "1046",
|
||||
"installByDefault": false,
|
||||
"browserVersion": "108.0.5311.0"
|
||||
"browserVersion": "108.0.5325.0"
|
||||
},
|
||||
{
|
||||
"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);
|
||||
});
|
||||
|
||||
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();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user