Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1485)

Unified Diff: Source/devtools/protocol.json

Issue 682423002: Devtools Animations: Show subtree animations for a given node (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Review changes Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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." }

Powered by Google App Engine
This is Rietveld 408576698