| 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": 0, | 7 "order": 0, |
| 8 "className": "WebInspector.ElementsPanelFactory" | 8 "className": "WebInspector.ElementsPanelFactory" |
| 9 }, | 9 }, |
| 10 { | 10 { |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 }, | 92 }, |
| 93 { | 93 { |
| 94 "type": "@WebInspector.ActionDelegate", | 94 "type": "@WebInspector.ActionDelegate", |
| 95 "actionId": "elements.edit-as-html", | 95 "actionId": "elements.edit-as-html", |
| 96 "className": "WebInspector.ElementsActionDelegate", | 96 "className": "WebInspector.ElementsActionDelegate", |
| 97 "bindings": [ | 97 "bindings": [ |
| 98 { | 98 { |
| 99 "shortcut": "F2" | 99 "shortcut": "F2" |
| 100 } | 100 } |
| 101 ] | 101 ] |
| 102 }, |
| 103 { |
| 104 "type": "@WebInspector.DOMPresentationUtils.MarkerDecorator", |
| 105 "className": "WebInspector.ElementsPanel.PseudoStateMarkerDecorator"
, |
| 106 "marker": "pseudo-state" |
| 107 }, |
| 108 { |
| 109 "type": "@WebInspector.DOMPresentationUtils.MarkerDecorator", |
| 110 "className": "WebInspector.ElementsPanel.HiddenMarkerDecorator", |
| 111 "marker": "hidden" |
| 102 } | 112 } |
| 103 ], | 113 ], |
| 104 "dependencies": [ | 114 "dependencies": [ |
| 105 "components", | 115 "components", |
| 106 "extensions" | 116 "extensions" |
| 107 ], | 117 ], |
| 108 "scripts": [ | 118 "scripts": [ |
| 109 "BezierUI.js", | 119 "BezierUI.js", |
| 110 "StylesPopoverHelper.js", | 120 "StylesPopoverHelper.js", |
| 111 "BezierEditor.js", | 121 "BezierEditor.js", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 128 ], | 138 ], |
| 129 "resources": [ | 139 "resources": [ |
| 130 "bezierEditor.css", | 140 "bezierEditor.css", |
| 131 "breadcrumbs.css", | 141 "breadcrumbs.css", |
| 132 "computedStyleSidebarPane.css", | 142 "computedStyleSidebarPane.css", |
| 133 "elementsPanel.css", | 143 "elementsPanel.css", |
| 134 "elementsTreeOutline.css", | 144 "elementsTreeOutline.css", |
| 135 "spectrum.css" | 145 "spectrum.css" |
| 136 ] | 146 ] |
| 137 } | 147 } |
| OLD | NEW |