test: make webview2 green (#19429)
This commit is contained in:
parent
af1783f4a8
commit
7b4ae20305
|
|
@ -141,9 +141,10 @@ 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, browserVersion, channel }) {
|
it('rich text editable fields should have children', async function({ page, browserName, browserVersion, channel, isWebView2 }) {
|
||||||
it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy');
|
it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy');
|
||||||
it.skip(channel && channel.startsWith('msedge'), 'Edge is missing a Chromium fix');
|
it.skip(channel && channel.startsWith('msedge'), 'Edge is missing a Chromium fix');
|
||||||
|
it.skip(isWebView2, 'WebView2 is missing a Chromium fix');
|
||||||
|
|
||||||
await page.setContent(`
|
await page.setContent(`
|
||||||
<div contenteditable="true">
|
<div contenteditable="true">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue