chore: fix webkit visibility check in aria matcher (#33102)

This commit is contained in:
Pavel Feldman 2024-10-14 15:55:21 -07:00 committed by GitHub
parent a38ff6e0d8
commit 2c05d294a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 15 additions and 7 deletions

View File

@ -16,7 +16,7 @@
import { escapeWithQuotes } from '@isomorphic/stringUtils';
import { beginAriaCaches, endAriaCaches, getAriaRole, getElementAccessibleName, isElementIgnoredForAria } from './roleUtils';
import { isElementVisible } from './domUtils';
import { isElementVisible, isElementStyleVisibilityVisible } from './domUtils';
type AriaNode = {
role: string;
@ -59,11 +59,7 @@ export function generateAriaTree(rootElement: Element): AriaNode {
return;
const visible = isElementVisible(element);
const hasVisibleChildren = element.checkVisibility({
opacityProperty: true,
visibilityProperty: true,
contentVisibilityAuto: true
});
const hasVisibleChildren = isElementStyleVisibilityVisible(element);
if (!hasVisibleChildren)
return;

View File

@ -94,8 +94,20 @@ test('should allow text nodes', async ({ page }) => {
`);
});
test('details visibility', async ({ page, browserName }) => {
await page.setContent(`
<details>
<summary>Summary</summary>
<div>Details</div>
</details>
`);
await expect(page.locator('body')).toMatchAriaSnapshot(`
- group: Summary
`);
});
test('integration test', async ({ page, browserName }) => {
test.fixme(browserName === 'webkit');
await page.setContent(`
<h1>Microsoft</h1>
<div>Open source projects and samples from Microsoft</div>