| Index: components/ui_devtools/protocol.json
|
| diff --git a/components/ui_devtools/protocol.json b/components/ui_devtools/protocol.json
|
| index 3ccbc2de9b491054fb76aa110ba9438a239cd7a5..7e5279bee73197e10a799619e2d73723161bc8f4 100644
|
| --- a/components/ui_devtools/protocol.json
|
| +++ b/components/ui_devtools/protocol.json
|
| @@ -158,9 +158,25 @@
|
| ]
|
| }
|
| ],
|
| + "events": [
|
| + {
|
| + "name": "styleSheetChanged",
|
| + "parameters": [
|
| + {
|
| + "name": "styleSheetId",
|
| + "$ref": "StyleSheetId"
|
| + }
|
| + ],
|
| + "description": "Fired whenever any bounds are updated for any object."
|
| + }
|
| + ],
|
| "domain": "CSS",
|
| "types": [
|
| {
|
| + "id": "StyleSheetId",
|
| + "type": "string"
|
| + },
|
| + {
|
| "id": "CSSProperty",
|
| "properties": [
|
| {
|
| @@ -181,6 +197,12 @@
|
| "id": "CSSStyle",
|
| "properties": [
|
| {
|
| + "description": "The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from. For UI devtools, this is simply equivalent to the NodeId.",
|
| + "optional": true,
|
| + "name": "styleSheetId",
|
| + "$ref": "StyleSheetId"
|
| + },
|
| + {
|
| "description": "CSS properties in the style.",
|
| "items": {
|
| "$ref": "CSSProperty"
|
|
|