feat: roll chromium to ToT (#241)

This commit is contained in:
Pavel Feldman 2019-12-13 14:57:46 -08:00 committed by GitHub
parent cb659bc8ba
commit 32fa26be97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,7 @@
},
"main": "index.js",
"playwright": {
"chromium_revision": "719491",
"chromium_revision": "724623",
"firefox_revision": "1005",
"webkit_revision": "1032"
},

View File

@ -107,6 +107,7 @@ export class Browser extends EventEmitter implements BrowserInterface {
return cookies.map(c => {
const copy: any = { sameSite: 'None', ...c };
delete copy.size;
delete copy.priority;
return copy as network.NetworkCookie;
});
},