feat(chromium): roll to Chromium 98.0.4758.0 (r950341) (#7907)

This commit is contained in:
Alex Rudenko 2022-01-17 14:40:38 +01:00 committed by GitHub
parent a566263ba2
commit a55c86fac5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 2 deletions

View File

@ -59,7 +59,7 @@
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"debug": "4.3.2", "debug": "4.3.2",
"devtools-protocol": "0.0.937139", "devtools-protocol": "0.0.948846",
"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.5", "node-fetch": "2.6.5",

View File

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

View File

@ -108,6 +108,7 @@ describeFailsFirefox('Accessibility', function () {
role: 'combobox', role: 'combobox',
name: '', name: '',
value: 'First Option', value: 'First Option',
haspopup: 'menu',
children: [ children: [
{ role: 'menuitem', name: 'First Option', selected: true }, { role: 'menuitem', name: 'First Option', selected: true },
{ role: 'menuitem', name: 'Second Option' }, { role: 'menuitem', name: 'Second Option' },
@ -453,6 +454,7 @@ describeFailsFirefox('Accessibility', function () {
{ role: 'menuitem', name: 'Second Item' }, { role: 'menuitem', name: 'Second Item' },
{ role: 'menuitem', name: 'Third Item' }, { role: 'menuitem', name: 'Third Item' },
], ],
orientation: 'vertical',
}); });
}); });
it('should return null when the element is no longer in DOM', async () => { it('should return null when the element is no longer in DOM', async () => {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 79 KiB

View File

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