Index: Source/devtools/protocol.json |
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json |
index be75e96c83b0001afbe507a950ffad5e256d16f8..0ecb42226e655cf7a383267f13b60511606f2595 100644 |
--- a/Source/devtools/protocol.json |
+++ b/Source/devtools/protocol.json |
@@ -4455,6 +4455,7 @@ |
{ "name": "fillMode", "type": "number", "description": "<code>AnimationNode</code>'s fill mode." }, |
{ "name": "timeFraction", "type": "number", "description": "<code>AnimationNode</code>'s time fraction." }, |
{ "name": "name", "type": "string", "description": "<code>AnimationNode</code>'s name." }, |
+ { "name": "backendNodeId", "$ref": "DOM.BackendNodeId", "description": "<code>AnimationNode</code>'s target node." }, |
{ "name": "keyframesRule", "$ref": "KeyframesRule", "optional": true, "description": "<code>AnimationNode</code>'s keyframes." } |
], |
"description": "AnimationNode instance" |
@@ -4482,7 +4483,8 @@ |
{ |
"name": "getAnimationPlayersForNode", |
"parameters": [ |
- { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id of the node to get animation players for." } |
+ { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id of the node to get animation players for." }, |
+ { "name": "includeSubtreeAnimations", "type": "boolean", "description": "Include animations from elements subtree." } |
], |
"returns": [ |
{ "name": "animationPlayers", "type": "array", "items": { "$ref": "AnimationPlayer" }, "description": "Array of animation players." } |