From be8d8364435830bec9720c04992e305b38c4d119 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 17 May 2021 16:38:04 +0000 Subject: [PATCH] feat(webkit): bump to 1480 (#6605) --- browsers.json | 2 +- src/server/webkit/protocol.ts | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/browsers.json b/browsers.json index 2a087b6910..ec1ffaf951 100644 --- a/browsers.json +++ b/browsers.json @@ -18,7 +18,7 @@ }, { "name": "webkit", - "revision": "1478", + "revision": "1480", "installByDefault": true, "revisionOverrides": { "mac10.14": "1443" diff --git a/src/server/webkit/protocol.ts b/src/server/webkit/protocol.ts index 14904adfdb..5082c43497 100644 --- a/src/server/webkit/protocol.ts +++ b/src/server/webkit/protocol.ts @@ -6532,6 +6532,10 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the * If `source` is provided (and not empty), it will be injected into all future global objects as soon as they're created. Omitting `source` will stop this from happening. */ source?: string; + /** + * Isolated world name to evaluate the script in. If not specified main world will be used. + */ + worldName?: string; } export type setBootstrapScriptReturnValue = { }