| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@WebInspector.PanelFactory", | 4 "type": "@WebInspector.PanelFactory", |
| 5 "name": "elements", | 5 "name": "elements", |
| 6 "title": "Elements", | 6 "title": "Elements", |
| 7 "order": 10, | 7 "order": 10, |
| 8 "className": "WebInspector.ElementsPanelFactory" | 8 "className": "WebInspector.ElementsPanelFactory" |
| 9 }, | 9 }, |
| 10 { | 10 { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 { | 25 { |
| 26 "type": "setting", | 26 "type": "setting", |
| 27 "category": "Elements", | 27 "category": "Elements", |
| 28 "order": 0, | 28 "order": 0, |
| 29 "title": "Color format:", | 29 "title": "Color format:", |
| 30 "settingName": "colorFormat", | 30 "settingName": "colorFormat", |
| 31 "settingType": "enum", | 31 "settingType": "enum", |
| 32 "defaultValue": "original", | 32 "defaultValue": "original", |
| 33 "options": [ | 33 "options": [ |
| 34 { "title": "Set color format as authored", "text": "As authored"
, "value": "original" }, | 34 { "title": "Set color format as authored", "text": "As authored"
, "value": "original" }, |
| 35 { "title": "Set color format to HEX", "text": "HEX: #DAC0DE", "v
alue": "hex", "raw": true }, | 35 { "title": "Set color format to HEX", "text": "HEX: #dac0de", "v
alue": "hex", "raw": true }, |
| 36 { "title": "Set color format to RGB", "text": "RGB: rgb(128, 255
, 255)", "value": "rgb", "raw": true }, | 36 { "title": "Set color format to RGB", "text": "RGB: rgb(128, 255
, 255)", "value": "rgb", "raw": true }, |
| 37 { "title": "Set color format to HSL", "text": "HSL: hsl(300, 80%
, 90%)", "value": "hsl", "raw": true } | 37 { "title": "Set color format to HSL", "text": "HSL: hsl(300, 80%
, 90%)", "value": "hsl", "raw": true } |
| 38 ] | 38 ] |
| 39 }, | 39 }, |
| 40 { | 40 { |
| 41 "type": "setting", | 41 "type": "setting", |
| 42 "category": "Elements", | 42 "category": "Elements", |
| 43 "order":1, | 43 "order":1, |
| 44 "title": "Show user agent shadow DOM", | 44 "title": "Show user agent shadow DOM", |
| 45 "settingName": "showUAShadowDOM", | 45 "settingName": "showUAShadowDOM", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 ], | 175 ], |
| 176 "resources": [ | 176 "resources": [ |
| 177 "bezierEditor.css", | 177 "bezierEditor.css", |
| 178 "breadcrumbs.css", | 178 "breadcrumbs.css", |
| 179 "computedStyleSidebarPane.css", | 179 "computedStyleSidebarPane.css", |
| 180 "elementsPanel.css", | 180 "elementsPanel.css", |
| 181 "elementsTreeOutline.css", | 181 "elementsTreeOutline.css", |
| 182 "spectrum.css" | 182 "spectrum.css" |
| 183 ] | 183 ] |
| 184 } | 184 } |
| OLD | NEW |