feat: roll chromium to ToT (#241)
This commit is contained in:
parent
cb659bc8ba
commit
32fa26be97
|
|
@ -8,7 +8,7 @@
|
||||||
},
|
},
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"playwright": {
|
"playwright": {
|
||||||
"chromium_revision": "719491",
|
"chromium_revision": "724623",
|
||||||
"firefox_revision": "1005",
|
"firefox_revision": "1005",
|
||||||
"webkit_revision": "1032"
|
"webkit_revision": "1032"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -107,6 +107,7 @@ export class Browser extends EventEmitter implements BrowserInterface {
|
||||||
return cookies.map(c => {
|
return cookies.map(c => {
|
||||||
const copy: any = { sameSite: 'None', ...c };
|
const copy: any = { sameSite: 'None', ...c };
|
||||||
delete copy.size;
|
delete copy.size;
|
||||||
|
delete copy.priority;
|
||||||
return copy as network.NetworkCookie;
|
return copy as network.NetworkCookie;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue