feat(webkit): roll to r1609 (#11824)

This commit is contained in:
github-actions[bot] 2022-02-03 08:20:39 -08:00 committed by GitHub
parent 1215057ca1
commit f96b1dd43b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 4 deletions

View File

@ -23,7 +23,7 @@
},
{
"name": "webkit",
"revision": "1604",
"revision": "1609",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446"

View File

@ -162,7 +162,7 @@ export module Protocol {
animationId: AnimationId;
}
export type requestEffectTargetReturnValue = {
nodeId: DOM.NodeId;
effectTarget: DOM.Styleable;
}
/**
* Resolves JavaScript `WebAnimation` object for given `AnimationId`.
@ -906,7 +906,7 @@ export module Protocol {
/**
* The layout context type of a node.
*/
export type LayoutContextType = "grid";
export type LayoutContextType = "flex"|"grid";
/**
* 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.
*/
@ -1172,7 +1172,7 @@ export module Protocol {
export type forcePseudoStateReturnValue = {
}
/**
* Change how layout context type changes are handled for nodes. When the new mode would observe nodes the frontend has not yet received, those nodes will be sent to the frontend immediately.
* Change how layout context type changes are handled for nodes. When the new mode would observe nodes the frontend has not yet recieved, those nodes will be sent to the frontend immediately.
*/
export type setLayoutContextTypeChangedModeParameters = {
/**
@ -2085,6 +2085,13 @@ export module Protocol {
*/
marginColor?: RGBAColor;
}
/**
* An object referencing a node and a pseudo-element, primarily used to identify an animation effect target.
*/
export interface Styleable {
nodeId: NodeId;
pseudoId?: CSS.PseudoId;
}
/**
* Data to construct File object.
*/