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 { |
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.ActionDelegate", |
| 17 "actionId": "elements.undo", |
| 18 "className": "WebInspector.ElementsPanel.UndoActionDelegate", |
| 19 "contextTypes": ["WebInspector.ElementsPanel"], |
| 20 "bindings": [ |
| 21 { |
| 22 "platform": "windows,linux", |
| 23 "shortcut": "Ctrl+Z" |
| 24 }, |
| 25 { |
| 26 "platform": "mac", |
| 27 "shortcut": "Meta+Z" |
| 28 } |
| 29 ] |
| 30 }, |
| 31 { |
| 32 "type": "@WebInspector.ActionDelegate", |
| 33 "actionId": "elements.redo", |
| 34 "className": "WebInspector.ElementsPanel.RedoActionDelegate", |
| 35 "contextTypes": ["WebInspector.ElementsPanel"], |
| 36 "bindings": [ |
| 37 { |
| 38 "platform": "windows,linux", |
| 39 "shortcut": "Ctrl+Y" |
| 40 }, |
| 41 { |
| 42 "platform": "mac", |
| 43 "shortcut": "Meta+Shift+Z" |
| 44 } |
| 45 ] |
| 46 }, |
| 47 { |
16 "type": "@WebInspector.Renderer", | 48 "type": "@WebInspector.Renderer", |
17 "contextTypes": ["WebInspector.DOMNode", "WebInspector.RemoteObject"
], | 49 "contextTypes": ["WebInspector.DOMNode", "WebInspector.RemoteObject"
], |
18 "className": "WebInspector.ElementsTreeOutline.Renderer" | 50 "className": "WebInspector.ElementsTreeOutline.Renderer" |
19 }, | 51 }, |
20 { | 52 { |
21 "type": "@WebInspector.Revealer", | 53 "type": "@WebInspector.Revealer", |
22 "contextTypes": ["WebInspector.DOMNode", "WebInspector.DeferredDOMNo
de", "WebInspector.RemoteObject" ], | 54 "contextTypes": ["WebInspector.DOMNode", "WebInspector.DeferredDOMNo
de", "WebInspector.RemoteObject" ], |
23 "className": "WebInspector.ElementsPanel.DOMNodeRevealer" | 55 "className": "WebInspector.ElementsPanel.DOMNodeRevealer" |
24 }, | 56 }, |
25 { | 57 { |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 "ElementsPanel.js", | 113 "ElementsPanel.js", |
82 "AnimationsSidebarPane.js" | 114 "AnimationsSidebarPane.js" |
83 ], | 115 ], |
84 "stylesheets": [ | 116 "stylesheets": [ |
85 "breadcrumbs.css", | 117 "breadcrumbs.css", |
86 "elementsPanel.css", | 118 "elementsPanel.css", |
87 "elementsTreeOutline.css", | 119 "elementsTreeOutline.css", |
88 "spectrum.css" | 120 "spectrum.css" |
89 ] | 121 ] |
90 } | 122 } |
OLD | NEW |