feat(webkit): bump to 1436 (#5513)

This commit is contained in:
Yury Semikhatsky 2021-02-19 13:47:47 -08:00 committed by GitHub
parent bba9fabfe3
commit 5f9acfaccb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 1 deletions

View File

@ -13,7 +13,7 @@
},
{
"name": "webkit",
"revision": "1432",
"revision": "1436",
"download": true
},
{

View File

@ -903,6 +903,10 @@ export module Protocol {
*/
defaultValue: number;
}
/**
* The layout context type of a node.
*/
export type LayoutContextType = "grid";
/**
* Fires whenever a MediaQuery result changes (for example, after a browser window has been resized.) The current implementation considers only viewport-dependent media features.
@ -932,6 +936,19 @@ export module Protocol {
*/
styleSheetId: StyleSheetId;
}
/**
* Called when a node's layout context type has changed.
*/
export type nodeLayoutContextTypeChangedPayload = {
/**
* Identifier of the node whose layout context type changed.
*/
nodeId: DOM.NodeId;
/**
* The new layout context type of the node. When not provided, the <code>LayoutContextType</code> of the node is not a context for which Web Inspector has specific functionality.
*/
layoutContextType?: LayoutContextType;
}
/**
* Enables the CSS agent for the given page. Clients should not assume that the CSS agent has been enabled until the result of this command is received.
@ -1781,6 +1798,10 @@ export module Protocol {
* Computed SHA-256 Content Security Policy hash source for given element.
*/
contentSecurityPolicyHash?: string;
/**
* The layout context type of the node. When not provided, the <code>LayoutContextType</code> of the node is not a context for which Web Inspector has specific functionality.
*/
layoutContextType?: CSS.LayoutContextType;
}
/**
* Relationship between data that is associated with a node and the node itself.
@ -8458,6 +8479,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"CSS.styleSheetChanged": CSS.styleSheetChangedPayload;
"CSS.styleSheetAdded": CSS.styleSheetAddedPayload;
"CSS.styleSheetRemoved": CSS.styleSheetRemovedPayload;
"CSS.nodeLayoutContextTypeChanged": CSS.nodeLayoutContextTypeChangedPayload;
"Canvas.canvasAdded": Canvas.canvasAddedPayload;
"Canvas.canvasRemoved": Canvas.canvasRemovedPayload;
"Canvas.canvasMemoryChanged": Canvas.canvasMemoryChangedPayload;