mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): roll to r1609 (#11824)
This commit is contained in:
parent
1215057ca1
commit
f96b1dd43b
@ -23,7 +23,7 @@
|
||||
},
|
||||
{
|
||||
"name": "webkit",
|
||||
"revision": "1604",
|
||||
"revision": "1609",
|
||||
"installByDefault": true,
|
||||
"revisionOverrides": {
|
||||
"mac10.14": "1446"
|
||||
|
||||
@ -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.
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user