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

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

Issue 967213002: Devtools Animations: Represent delay and end-delay on the animation timeline (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Round values Created 5 years, 9 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 | Annotate | Revision Log
« 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 4683 matching lines...) Expand 10 before | Expand all | Expand 10 after
4694 { "name": "type", "type": "string", "enum": ["CSSTransition" , "CSSAnimation", "WebAnimation"], "description": "Animation type of <code>Anima tionPlayer</code>." } 4694 { "name": "type", "type": "string", "enum": ["CSSTransition" , "CSSAnimation", "WebAnimation"], "description": "Animation type of <code>Anima tionPlayer</code>." }
4695 ], 4695 ],
4696 "description": "AnimationPlayer instance." 4696 "description": "AnimationPlayer instance."
4697 }, 4697 },
4698 { 4698 {
4699 "id": "AnimationNode", 4699 "id": "AnimationNode",
4700 "type": "object", 4700 "type": "object",
4701 "hidden": true, 4701 "hidden": true,
4702 "properties": [ 4702 "properties": [
4703 { "name": "delay", "type": "number", "description": "<code>A nimationNode</code>'s delay." }, 4703 { "name": "delay", "type": "number", "description": "<code>A nimationNode</code>'s delay." },
4704 { "name": "endDelay", "type": "number", "description": "<cod e>AnimationNode</code>'s end delay." },
4704 { "name": "playbackRate", "type": "number", "description": " <code>AnimationNode</code>'s playbackRate." }, 4705 { "name": "playbackRate", "type": "number", "description": " <code>AnimationNode</code>'s playbackRate." },
4705 { "name": "iterationStart", "type": "number", "description": "<code>AnimationNode</code>'s iteration start." }, 4706 { "name": "iterationStart", "type": "number", "description": "<code>AnimationNode</code>'s iteration start." },
4706 { "name": "iterations", "type": "number", "description": "<c ode>AnimationNode</code>'s iterations." }, 4707 { "name": "iterations", "type": "number", "description": "<c ode>AnimationNode</code>'s iterations." },
4707 { "name": "duration", "type": "number", "description": "<cod e>AnimationNode</code>'s iteration duration." }, 4708 { "name": "duration", "type": "number", "description": "<cod e>AnimationNode</code>'s iteration duration." },
4708 { "name": "direction", "type": "string", "description": "<co de>AnimationNode</code>'s playback direction." }, 4709 { "name": "direction", "type": "string", "description": "<co de>AnimationNode</code>'s playback direction." },
4709 { "name": "fill", "type": "string", "description": "<code>An imationNode</code>'s fill mode." }, 4710 { "name": "fill", "type": "string", "description": "<code>An imationNode</code>'s fill mode." },
4710 { "name": "name", "type": "string", "description": "<code>An imationNode</code>'s name." }, 4711 { "name": "name", "type": "string", "description": "<code>An imationNode</code>'s name." },
4711 { "name": "backendNodeId", "$ref": "DOM.BackendNodeId", "des cription": "<code>AnimationNode</code>'s target node." }, 4712 { "name": "backendNodeId", "$ref": "DOM.BackendNodeId", "des cription": "<code>AnimationNode</code>'s target node." },
4712 { "name": "keyframesRule", "$ref": "KeyframesRule", "optiona l": true, "description": "<code>AnimationNode</code>'s keyframes." }, 4713 { "name": "keyframesRule", "$ref": "KeyframesRule", "optiona l": true, "description": "<code>AnimationNode</code>'s keyframes." },
4713 { "name": "easing", "type": "string", "description": "<code> AnimationNode</code>'s timing function." } 4714 { "name": "easing", "type": "string", "description": "<code> AnimationNode</code>'s timing function." }
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
4829 ], 4830 ],
4830 "returns": [ 4831 "returns": [
4831 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 4832 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
4832 ], 4833 ],
4833 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4834 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4834 "hidden": true 4835 "hidden": true
4835 } 4836 }
4836 ] 4837 ]
4837 }] 4838 }]
4838 } 4839 }
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