feat(firefox): roll ff 1328 and ff-beta 1330 (#15185)

This commit is contained in:
Dmitry Gozman 2022-06-29 03:04:46 -07:00 committed by GitHub
parent e34fa4feeb
commit 8220ab1379
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 5 deletions

View file

@ -21,13 +21,13 @@
},
{
"name": "firefox",
"revision": "1327",
"revision": "1328",
"installByDefault": true,
"browserVersion": "100.0.2"
},
{
"name": "firefox-beta",
"revision": "1329",
"revision": "1330",
"installByDefault": false,
"browserVersion": "101.0b8"
},

View file

@ -972,7 +972,7 @@ export module Protocol {
focused?: boolean;
pressed?: boolean;
focusable?: boolean;
haspopup?: boolean;
haspopup?: string;
required?: boolean;
invalid?: boolean;
modal?: boolean;
@ -1007,7 +1007,7 @@ export module Protocol {
focused?: boolean;
pressed?: boolean;
focusable?: boolean;
haspopup?: boolean;
haspopup?: string;
required?: boolean;
invalid?: boolean;
modal?: boolean;

View file

@ -102,9 +102,10 @@ it('orientation', async ({ page }) => {
});
it('autocomplete', async ({ page }) => {
await page.setContent('<div role="textbox" aria-autocomplete="list">hi</div>');
await page.setContent('<div role="textbox" aria-autocomplete="list" aria-haspopup="menu">hi</div>');
const snapshot = await page.accessibility.snapshot();
expect(snapshot.children[0].autocomplete).toEqual('list');
expect(snapshot.children[0].haspopup).toEqual('menu');
});
it('multiselectable', async ({ page }) => {