feat(firefox): roll ff 1328 and ff-beta 1330 (#15185)
This commit is contained in:
parent
e34fa4feeb
commit
8220ab1379
|
|
@ -21,13 +21,13 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "firefox",
|
"name": "firefox",
|
||||||
"revision": "1327",
|
"revision": "1328",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"browserVersion": "100.0.2"
|
"browserVersion": "100.0.2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "firefox-beta",
|
"name": "firefox-beta",
|
||||||
"revision": "1329",
|
"revision": "1330",
|
||||||
"installByDefault": false,
|
"installByDefault": false,
|
||||||
"browserVersion": "101.0b8"
|
"browserVersion": "101.0b8"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -972,7 +972,7 @@ export module Protocol {
|
||||||
focused?: boolean;
|
focused?: boolean;
|
||||||
pressed?: boolean;
|
pressed?: boolean;
|
||||||
focusable?: boolean;
|
focusable?: boolean;
|
||||||
haspopup?: boolean;
|
haspopup?: string;
|
||||||
required?: boolean;
|
required?: boolean;
|
||||||
invalid?: boolean;
|
invalid?: boolean;
|
||||||
modal?: boolean;
|
modal?: boolean;
|
||||||
|
|
@ -1007,7 +1007,7 @@ export module Protocol {
|
||||||
focused?: boolean;
|
focused?: boolean;
|
||||||
pressed?: boolean;
|
pressed?: boolean;
|
||||||
focusable?: boolean;
|
focusable?: boolean;
|
||||||
haspopup?: boolean;
|
haspopup?: string;
|
||||||
required?: boolean;
|
required?: boolean;
|
||||||
invalid?: boolean;
|
invalid?: boolean;
|
||||||
modal?: boolean;
|
modal?: boolean;
|
||||||
|
|
|
||||||
|
|
@ -102,9 +102,10 @@ it('orientation', async ({ page }) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('autocomplete', 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();
|
const snapshot = await page.accessibility.snapshot();
|
||||||
expect(snapshot.children[0].autocomplete).toEqual('list');
|
expect(snapshot.children[0].autocomplete).toEqual('list');
|
||||||
|
expect(snapshot.children[0].haspopup).toEqual('menu');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('multiselectable', async ({ page }) => {
|
it('multiselectable', async ({ page }) => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue