feat(webkit): bump to 1443 (#5665)

This commit is contained in:
Yury Semikhatsky 2021-03-02 09:15:07 -08:00 committed by GitHub
parent 19bd32f6c7
commit 1a0ccc1383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
},
{
"name": "webkit",
"revision": "1442",
"revision": "1443",
"download": true
},
{

View File

@ -908,7 +908,7 @@ export module Protocol {
*/
export type LayoutContextType = "grid";
/**
* The mode for how layout context type changes are handled. <code>Observed</code> 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). <code>All</code> informs the frontend of all layout context type changes and.
* The mode for how layout context type changes are handled (default: <code>Observed</code>). <code>Observed</code> 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). <code>All</code> 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";