mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
feat(chromium): roll to Chromium 93.0.4577.0 (r901912) (#7387)
This commit is contained in:
parent
c5a0d500e4
commit
e10faad4f2
@ -59,7 +59,7 @@
|
|||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"debug": "4.3.1",
|
"debug": "4.3.1",
|
||||||
"devtools-protocol": "0.0.883894",
|
"devtools-protocol": "0.0.901419",
|
||||||
"extract-zip": "2.0.1",
|
"extract-zip": "2.0.1",
|
||||||
"https-proxy-agent": "5.0.0",
|
"https-proxy-agent": "5.0.0",
|
||||||
"node-fetch": "2.6.1",
|
"node-fetch": "2.6.1",
|
||||||
|
@ -20,6 +20,6 @@ type Revisions = Readonly<{
|
|||||||
}>;
|
}>;
|
||||||
|
|
||||||
export const PUPPETEER_REVISIONS: Revisions = {
|
export const PUPPETEER_REVISIONS: Revisions = {
|
||||||
chromium: '884014',
|
chromium: '901912',
|
||||||
firefox: 'latest',
|
firefox: 'latest',
|
||||||
};
|
};
|
||||||
|
@ -582,13 +582,13 @@ describeChromeOnly('AriaQueryHandler', () => {
|
|||||||
const { page } = getTestState();
|
const { page } = getTestState();
|
||||||
const found = await page.$$('aria/[role="heading"]');
|
const found = await page.$$('aria/[role="heading"]');
|
||||||
const ids = await getIds(found);
|
const ids = await getIds(found);
|
||||||
expect(ids).toEqual(['shown', 'node11', 'node13']);
|
expect(ids).toEqual(['shown', 'hidden', 'node11', 'node13']);
|
||||||
});
|
});
|
||||||
it('should not find ignored', async () => {
|
it('should find both ignored and unignored', async () => {
|
||||||
const { page } = getTestState();
|
const { page } = getTestState();
|
||||||
const found = await page.$$('aria/title');
|
const found = await page.$$('aria/title');
|
||||||
const ids = await getIds(found);
|
const ids = await getIds(found);
|
||||||
expect(ids).toEqual(['shown']);
|
expect(ids).toEqual(['shown', 'hidden']);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
const versionsPerRelease = new Map([
|
const versionsPerRelease = new Map([
|
||||||
// This is a mapping from Chromium version => Puppeteer version.
|
// This is a mapping from Chromium version => Puppeteer version.
|
||||||
// In Chromium roll patches, use 'NEXT' for the Puppeteer version.
|
// In Chromium roll patches, use 'NEXT' for the Puppeteer version.
|
||||||
|
['93.0.4577.0', 'NEXT'],
|
||||||
['92.0.4512.0', 'v10.0.0'],
|
['92.0.4512.0', 'v10.0.0'],
|
||||||
['91.0.4469.0', 'v9.0.0'],
|
['91.0.4469.0', 'v9.0.0'],
|
||||||
['90.0.4427.0', 'v8.0.0'],
|
['90.0.4427.0', 'v8.0.0'],
|
||||||
|
Loading…
Reference in New Issue
Block a user