mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
feat(chromium): roll to Chromium 98.0.4758.0 (r950341) (#7907)
This commit is contained in:
parent
a566263ba2
commit
a55c86fac5
@ -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",
|
||||||
|
@ -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',
|
||||||
};
|
};
|
||||||
|
@ -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 |
@ -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'],
|
||||||
|
Loading…
Reference in New Issue
Block a user