| OLD | NEW |
| 1 { | 1 { |
| 2 "domains": [ | 2 "domains": [ |
| 3 { | 3 { |
| 4 "commands": [ | 4 "commands": [ |
| 5 { | 5 { |
| 6 "description": "Enables DOM agent for the given page.", | 6 "description": "Enables DOM agent for the given page.", |
| 7 "name": "enable" | 7 "name": "enable" |
| 8 }, | 8 }, |
| 9 { | 9 { |
| 10 "description": "Disables DOM agent for the given page.", | 10 "description": "Disables DOM agent for the given page.", |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "returns": [ | 151 "returns": [ |
| 152 { | 152 { |
| 153 "$ref": "CSSStyle", | 153 "$ref": "CSSStyle", |
| 154 "description": "Inline style for the specified DOM n
ode.", | 154 "description": "Inline style for the specified DOM n
ode.", |
| 155 "name": "inlineStyle", | 155 "name": "inlineStyle", |
| 156 "optional": true | 156 "optional": true |
| 157 } | 157 } |
| 158 ] | 158 ] |
| 159 } | 159 } |
| 160 ], | 160 ], |
| 161 "events": [ |
| 162 { |
| 163 "name": "styleSheetChanged", |
| 164 "parameters": [ |
| 165 { |
| 166 "name": "styleSheetId", |
| 167 "$ref": "StyleSheetId" |
| 168 } |
| 169 ], |
| 170 "description": "Fired whenever any bounds are updated for an
y object." |
| 171 } |
| 172 ], |
| 161 "domain": "CSS", | 173 "domain": "CSS", |
| 162 "types": [ | 174 "types": [ |
| 163 { | 175 { |
| 176 "id": "StyleSheetId", |
| 177 "type": "string" |
| 178 }, |
| 179 { |
| 164 "id": "CSSProperty", | 180 "id": "CSSProperty", |
| 165 "properties": [ | 181 "properties": [ |
| 166 { | 182 { |
| 167 "description": "The property name.", | 183 "description": "The property name.", |
| 168 "name": "name", | 184 "name": "name", |
| 169 "type": "string" | 185 "type": "string" |
| 170 }, | 186 }, |
| 171 { | 187 { |
| 172 "description": "The property value.", | 188 "description": "The property value.", |
| 173 "name": "value", | 189 "name": "value", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 200 "type": "object" | 216 "type": "object" |
| 201 } | 217 } |
| 202 ] | 218 ] |
| 203 } | 219 } |
| 204 ], | 220 ], |
| 205 "version": { | 221 "version": { |
| 206 "major": "1", | 222 "major": "1", |
| 207 "minor": "0" | 223 "minor": "0" |
| 208 } | 224 } |
| 209 } | 225 } |
| OLD | NEW |