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

Side by Side Diff: Source/devtools/protocol.json

Issue 664993002: Devtools Animations: Display keyframes for CSS Animations in inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Review changes Created 6 years, 2 months 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 unified diff | Download patch
« no previous file with comments | « Source/devtools/front_end/sdk/AnimationModel.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 4426 matching lines...) Expand 10 before | Expand all | Expand 10 after
4437 "hidden": true, 4437 "hidden": true,
4438 "properties": [ 4438 "properties": [
4439 { "name": "startDelay", "type": "number", "description": "<c ode>AnimationNode</code>'s start delay." }, 4439 { "name": "startDelay", "type": "number", "description": "<c ode>AnimationNode</code>'s start delay." },
4440 { "name": "playbackRate", "type": "number", "description": " <code>AnimationNode</code>'s playbackRate." }, 4440 { "name": "playbackRate", "type": "number", "description": " <code>AnimationNode</code>'s playbackRate." },
4441 { "name": "iterationStart", "type": "number", "description": "<code>AnimationNode</code>'s iteration start." }, 4441 { "name": "iterationStart", "type": "number", "description": "<code>AnimationNode</code>'s iteration start." },
4442 { "name": "iterationCount", "type": "number", "description": "<code>AnimationNode</code>'s iteration count." }, 4442 { "name": "iterationCount", "type": "number", "description": "<code>AnimationNode</code>'s iteration count." },
4443 { "name": "duration", "type": "number", "description": "<cod e>AnimationNode</code>'s iteration duration." }, 4443 { "name": "duration", "type": "number", "description": "<cod e>AnimationNode</code>'s iteration duration." },
4444 { "name": "direction", "type": "number", "description": "<co de>AnimationNode</code>'s playback direction." }, 4444 { "name": "direction", "type": "number", "description": "<co de>AnimationNode</code>'s playback direction." },
4445 { "name": "fillMode", "type": "number", "description": "<cod e>AnimationNode</code>'s fill mode." }, 4445 { "name": "fillMode", "type": "number", "description": "<cod e>AnimationNode</code>'s fill mode." },
4446 { "name": "timeFraction", "type": "number", "description": " <code>AnimationNode</code>'s time fraction." }, 4446 { "name": "timeFraction", "type": "number", "description": " <code>AnimationNode</code>'s time fraction." },
4447 { "name": "name", "type": "string", "description": "<code>An imationNode</code> name."} 4447 { "name": "name", "type": "string", "description": "<code>An imationNode</code>'s name." },
4448 { "name": "keyframesRule", "$ref": "KeyframesRule", "optiona l": true, "description": "<code>AnimationNode</code>'s keyframes." }
4448 ], 4449 ],
4449 "description": "AnimationNode instance" 4450 "description": "AnimationNode instance"
4451 },
4452 {
4453 "id": "KeyframesRule",
4454 "type": "object",
4455 "properties": [
4456 { "name": "name", "type": "string", "optional": true, "descr iption": "CSS keyframed animation's name." },
4457 { "name": "keyframes", "type": "array", "items": { "$ref": " KeyframeStyle" }, "description": "List of animation keyframes." }
4458 ],
4459 "description": "Keyframes Rule"
4460 },
4461 {
4462 "id": "KeyframeStyle",
4463 "type": "object",
4464 "properties": [
4465 { "name": "offset", "type": "string", "description": "Keyfra me's time offset." },
4466 { "name": "style", "$ref": "CSS.CSSStyle", "description": "K eyframe's associated CSS style declaration." }
4467 ],
4468 "description": "Keyframe Style"
4450 } 4469 }
4451 ], 4470 ],
4452 "commands": [ 4471 "commands": [
4453 { 4472 {
4454 "name": "getAnimationPlayersForNode", 4473 "name": "getAnimationPlayersForNode",
4455 "parameters": [ 4474 "parameters": [
4456 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id of the node to get animation players for." } 4475 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id of the node to get animation players for." }
4457 ], 4476 ],
4458 "returns": [ 4477 "returns": [
4459 { "name": "animationPlayers", "type": "array", "items": { "$ ref": "AnimationPlayer" }, "description": "Array of animation players." } 4478 { "name": "animationPlayers", "type": "array", "items": { "$ ref": "AnimationPlayer" }, "description": "Array of animation players." }
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
4505 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." } 4524 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." }
4506 ], 4525 ],
4507 "description": "Gets the state of an AnimationPlayer.", 4526 "description": "Gets the state of an AnimationPlayer.",
4508 "hidden": true 4527 "hidden": true
4509 } 4528 }
4510 ], 4529 ],
4511 "events": [ 4530 "events": [
4512 ] 4531 ]
4513 }] 4532 }]
4514 } 4533 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/AnimationModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698