From 1a0ccc138351424c3c8220abedf52318b43c1cf9 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Tue, 2 Mar 2021 09:15:07 -0800 Subject: [PATCH] feat(webkit): bump to 1443 (#5665) --- browsers.json | 2 +- src/server/webkit/protocol.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/browsers.json b/browsers.json index 277965b0e6..30d1fff8eb 100644 --- a/browsers.json +++ b/browsers.json @@ -13,7 +13,7 @@ }, { "name": "webkit", - "revision": "1442", + "revision": "1443", "download": true }, { diff --git a/src/server/webkit/protocol.ts b/src/server/webkit/protocol.ts index e255c4def3..7cfb33be1d 100644 --- a/src/server/webkit/protocol.ts +++ b/src/server/webkit/protocol.ts @@ -908,7 +908,7 @@ export module Protocol { */ export type LayoutContextType = "grid"; /** - * The mode for how layout context type changes are handled. Observed limits handling to those nodes already known to the frontend by other means (generally, this means the node is a visible item in the Elements tab). All informs the frontend of all layout context type changes and. + * The mode for how layout context type changes are handled (default: Observed). Observed limits handling to those nodes already known to the frontend by other means (generally, this means the node is a visible item in the Elements tab). All informs the frontend of all layout context type changes and all nodes with a known layout context are sent to the frontend. */ export type LayoutContextTypeChangedMode = "observed"|"all";