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 { |
11 "type": "@WebInspector.ContextMenu.Provider", | 11 "type": "@WebInspector.ContextMenu.Provider", |
12 "contextTypes": ["WebInspector.RemoteObject", "WebInspector.DOMNode"
, "WebInspector.DeferredDOMNode"], | 12 "contextTypes": ["WebInspector.RemoteObject", "WebInspector.DOMNode"
, "WebInspector.DeferredDOMNode"], |
13 "className": "WebInspector.ElementsPanel.ContextMenuProvider" | 13 "className": "WebInspector.ElementsPanel.ContextMenuProvider" |
14 }, | 14 }, |
15 { | 15 { |
16 "type": "@WebInspector.Renderer", | 16 "type": "@WebInspector.Renderer", |
17 "contextTypes": ["WebInspector.DOMNode", "WebInspector.RemoteObject"
], | 17 "contextTypes": ["WebInspector.DOMNode", "WebInspector.RemoteObject"
], |
18 "className": "WebInspector.ElementsTreeOutline.Renderer" | 18 "className": "WebInspector.ElementsTreeOutline.Renderer" |
19 }, | 19 }, |
20 { | 20 { |
21 "type": "@WebInspector.Revealer", | 21 "type": "@WebInspector.Revealer", |
22 "contextTypes": ["WebInspector.DOMNode", "WebInspector.DeferredDOMNo
de", "WebInspector.RemoteObject" ], | 22 "contextTypes": ["WebInspector.DOMNode", "WebInspector.DeferredDOMNo
de", "WebInspector.RemoteObject" ], |
23 "className": "WebInspector.ElementsPanel.DOMNodeRevealer" | 23 "className": "WebInspector.ElementsPanel.DOMNodeRevealer" |
24 }, | 24 }, |
25 { | 25 { |
26 "type": "@WebInspector.Revealer", | 26 "type": "@WebInspector.Revealer", |
27 "contextTypes": ["WebInspector.CSSProperty" ], | 27 "contextTypes": ["WebInspector.CSSProperty" ], |
28 "className": "WebInspector.ElementsPanel.CSSPropertyRevealer" | 28 "className": "WebInspector.ElementsPanel.CSSPropertyRevealer" |
29 }, | 29 }, |
30 { | 30 { |
31 "type": "setting", | 31 "type": "setting", |
32 "category": "Elements", | 32 "category": "Elements", |
33 "order": 0, | 33 "order": 0, |
34 "title": "Color format:", | 34 "title": "Color format:", |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 "experiment": "layoutEditor" | 156 "experiment": "layoutEditor" |
157 } | 157 } |
158 ], | 158 ], |
159 "dependencies": [ | 159 "dependencies": [ |
160 "components", | 160 "components", |
161 "extensions" | 161 "extensions" |
162 ], | 162 ], |
163 "scripts": [ | 163 "scripts": [ |
164 "InspectElementModeController.js", | 164 "InspectElementModeController.js", |
165 "BezierUI.js", | 165 "BezierUI.js", |
166 "StylesPopoverHelper.js", | 166 "ColorSwatchPopoverIcon.js", |
167 "BezierEditor.js", | 167 "BezierEditor.js", |
168 "ComputedStyleModel.js", | 168 "ComputedStyleModel.js", |
169 "ElementsBreadcrumbs.js", | 169 "ElementsBreadcrumbs.js", |
170 "ElementsSidebarPane.js", | 170 "ElementsSidebarPane.js", |
171 "ElementsSidebarView.js", | 171 "ElementsSidebarView.js", |
172 "ElementsTreeElement.js", | 172 "ElementsTreeElement.js", |
173 "ElementsTreeOutline.js", | 173 "ElementsTreeOutline.js", |
174 "EventListenersWidget.js", | 174 "EventListenersWidget.js", |
175 "MetricsSidebarPane.js", | 175 "MetricsSidebarPane.js", |
176 "PlatformFontsWidget.js", | 176 "PlatformFontsWidget.js", |
177 "PropertiesWidget.js", | 177 "PropertiesWidget.js", |
178 "PropertyChangeHighlighter.js", | 178 "PropertyChangeHighlighter.js", |
179 "StylesSidebarPane.js", | 179 "StylesSidebarPane.js", |
180 "ComputedStyleWidget.js", | 180 "ComputedStyleWidget.js", |
181 "ElementsPanel.js", | 181 "ElementsPanel.js", |
182 "ClassesPaneWidget.js", | 182 "ClassesPaneWidget.js", |
183 "ElementStatePaneWidget.js", | 183 "ElementStatePaneWidget.js", |
184 "ElementsTreeElementHighlighter.js" | 184 "ElementsTreeElementHighlighter.js" |
185 ], | 185 ], |
186 "resources": [ | 186 "resources": [ |
187 "bezierEditor.css", | 187 "bezierEditor.css", |
188 "breadcrumbs.css", | 188 "breadcrumbs.css", |
189 "computedStyleSidebarPane.css", | 189 "computedStyleSidebarPane.css", |
190 "elementsPanel.css", | 190 "elementsPanel.css", |
191 "elementsTreeOutline.css", | 191 "elementsTreeOutline.css", |
192 "platformFontsWidget.css" | 192 "platformFontsWidget.css" |
193 ] | 193 ] |
194 } | 194 } |
OLD | NEW |