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 = { }