From e10faad4f239b1120491bb54fcba0216acd3a646 Mon Sep 17 00:00:00 2001 From: Jan Scheffler Date: Wed, 4 Aug 2021 14:22:15 +0200 Subject: [PATCH] feat(chromium): roll to Chromium 93.0.4577.0 (r901912) (#7387) --- package.json | 2 +- src/revisions.ts | 2 +- test/ariaqueryhandler.spec.ts | 6 +++--- versions.js | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index de3967bb988ec..15e5497bed283 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/revisions.ts b/src/revisions.ts index 3b86c4ea9bf54..5c4694ea39032 100644 --- a/src/revisions.ts +++ b/src/revisions.ts @@ -20,6 +20,6 @@ type Revisions = Readonly<{ }>; export const PUPPETEER_REVISIONS: Revisions = { - chromium: '884014', + chromium: '901912', firefox: 'latest', }; diff --git a/test/ariaqueryhandler.spec.ts b/test/ariaqueryhandler.spec.ts index fcc3eef7a415f..395978bc09553 100644 --- a/test/ariaqueryhandler.spec.ts +++ b/test/ariaqueryhandler.spec.ts @@ -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']); }); }); }); diff --git a/versions.js b/versions.js index 502efeb5655e9..9b7f5a9877546 100644 --- a/versions.js +++ b/versions.js @@ -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'],