feat: roll chromium to ToT

This commit is contained in:
Pavel 2019-12-13 14:39:13 -08:00
parent cde81aaf5a
commit 0606f3f4c7
2 changed files with 2 additions and 1 deletions

View file

@ -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"
}, },

View file

@ -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;
}); });
}, },