feat(chromium): roll to Chromium 93.0.4577.0 (r901912) (#7387)

This commit is contained in:
Jan Scheffler 2021-08-04 14:22:15 +02:00 committed by GitHub
parent c5a0d500e4
commit e10faad4f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 5 deletions

View File

@ -59,7 +59,7 @@
"license": "Apache-2.0",
"dependencies": {
"debug": "4.3.1",
"devtools-protocol": "0.0.883894",
"devtools-protocol": "0.0.901419",
"extract-zip": "2.0.1",
"https-proxy-agent": "5.0.0",
"node-fetch": "2.6.1",

View File

@ -20,6 +20,6 @@ type Revisions = Readonly<{
}>;
export const PUPPETEER_REVISIONS: Revisions = {
chromium: '884014',
chromium: '901912',
firefox: 'latest',
};

View File

@ -582,13 +582,13 @@ describeChromeOnly('AriaQueryHandler', () => {
const { page } = getTestState();
const found = await page.$$('aria/[role="heading"]');
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 found = await page.$$('aria/title');
const ids = await getIds(found);
expect(ids).toEqual(['shown']);
expect(ids).toEqual(['shown', 'hidden']);
});
});
});

View File

@ -17,6 +17,7 @@
const versionsPerRelease = new Map([
// This is a mapping from Chromium version => Puppeteer version.
// In Chromium roll patches, use 'NEXT' for the Puppeteer version.
['93.0.4577.0', 'NEXT'],
['92.0.4512.0', 'v10.0.0'],
['91.0.4469.0', 'v9.0.0'],
['90.0.4427.0', 'v8.0.0'],