| Index: third_party/WebKit/Source/devtools/protocol.json
|
| diff --git a/third_party/WebKit/Source/devtools/protocol.json b/third_party/WebKit/Source/devtools/protocol.json
|
| index bb97598aa6fdd216a6dd6de4c57a55c0794a6d3c..8ac0f3c41230cd7d5289b8d5c00e1ce8acc6070f 100644
|
| --- a/third_party/WebKit/Source/devtools/protocol.json
|
| +++ b/third_party/WebKit/Source/devtools/protocol.json
|
| @@ -3127,6 +3127,8 @@
|
| "id": "CSSKeyframeRule",
|
| "type": "object",
|
| "properties": [
|
| + { "name": "styleSheetId", "$ref": "StyleSheetId", "optional": true, "description": "The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from." },
|
| + { "name": "origin", "$ref": "StyleSheetOrigin", "description": "Parent stylesheet's origin."},
|
| { "name": "keyText", "$ref": "Value", "description": "Associated key text." },
|
| { "name": "style", "$ref": "CSSStyle", "description": "Associated style declaration." }
|
| ],
|
| @@ -3233,6 +3235,18 @@
|
| "description": "Modifies the rule selector."
|
| },
|
| {
|
| + "name": "setKeyframeKey",
|
| + "parameters": [
|
| + { "name": "styleSheetId", "$ref": "StyleSheetId" },
|
| + { "name": "range", "$ref": "SourceRange" },
|
| + { "name": "keyText", "type": "string" }
|
| + ],
|
| + "returns": [
|
| + { "name": "keyText", "$ref": "Value", "description": "The resulting key text after modification." }
|
| + ],
|
| + "description": "Modifies the keyframe rule key text."
|
| + },
|
| + {
|
| "name": "setStyleText",
|
| "parameters": [
|
| { "name": "styleSheetId", "$ref": "StyleSheetId" },
|
|
|