mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
feat(chromium): roll to Chromium 99.0.4844.16 (r961656) (#7960)
Co-authored-by: Randolf Jung <jrandolf@chromium.org>
This commit is contained in:
parent
6a655cb647
commit
96c3f943b2
@ -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",
|
||||
|
@ -20,6 +20,6 @@ type Revisions = Readonly<{
|
||||
}>;
|
||||
|
||||
export const PUPPETEER_REVISIONS: Revisions = {
|
||||
chromium: '950341',
|
||||
chromium: '961656',
|
||||
firefox: 'latest',
|
||||
};
|
||||
|
@ -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();
|
||||
|
@ -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;
|
||||
|
@ -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'],
|
||||
|
Loading…
Reference in New Issue
Block a user