feat(chromium): roll to Chromium 99.0.4844.16 (r961656) (#7960)

Co-authored-by: Randolf Jung <jrandolf@chromium.org>
This commit is contained in:
jrandolf 2022-02-04 12:18:53 +01:00 committed by GitHub
parent 6a655cb647
commit 96c3f943b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 17 additions and 4 deletions

View File

@ -59,7 +59,7 @@
"license": "Apache-2.0",
"dependencies": {
"debug": "4.3.3",
"devtools-protocol": "0.0.948846",
"devtools-protocol": "0.0.960912",
"extract-zip": "2.0.1",
"https-proxy-agent": "5.0.0",
"node-fetch": "2.6.7",

View File

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

View File

@ -594,7 +594,14 @@ describeChromeOnly('AriaQueryHandler', () => {
const { page } = getTestState();
const found = await page.$$<HTMLButtonElement>('aria/[role="button"]');
const ids = await getIds(found);
expect(ids).toEqual(['node5', 'node6', 'node8', 'node10', 'node21']);
expect(ids).toEqual([
'node5',
'node6',
'node7',
'node8',
'node10',
'node21',
]);
});
it('should find by role "heading"', async () => {
const { page } = getTestState();

View File

@ -256,7 +256,12 @@ function fetch(url) {
});
})
.on('error', function (e) {
console.error('Error fetching json: ' + e);
// This is okay; the server may just be faster at closing than us after
// the body is fully sent.
if (e.message.includes('ECONNRESET')) {
return;
}
console.error(`Error fetching json from ${url}: ${e}`);
resolve(null);
});
return promise;

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.
['99.0.4844.16', 'NEXT'],
['98.0.4758.0', 'v13.1.0'],
['97.0.4692.0', 'v12.0.0'],
['93.0.4577.0', 'v10.2.0'],