| 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 { | |
| 48 "type": "@WebInspector.Renderer", | 16 "type": "@WebInspector.Renderer", |
| 49 "contextTypes": ["WebInspector.DOMNode", "WebInspector.RemoteObject"
], | 17 "contextTypes": ["WebInspector.DOMNode", "WebInspector.RemoteObject"
], |
| 50 "className": "WebInspector.ElementsTreeOutline.Renderer" | 18 "className": "WebInspector.ElementsTreeOutline.Renderer" |
| 51 }, | 19 }, |
| 52 { | 20 { |
| 53 "type": "@WebInspector.Revealer", | 21 "type": "@WebInspector.Revealer", |
| 54 "contextTypes": ["WebInspector.DOMNode", "WebInspector.DeferredDOMNo
de", "WebInspector.RemoteObject" ], | 22 "contextTypes": ["WebInspector.DOMNode", "WebInspector.DeferredDOMNo
de", "WebInspector.RemoteObject" ], |
| 55 "className": "WebInspector.ElementsPanel.DOMNodeRevealer" | 23 "className": "WebInspector.ElementsPanel.DOMNodeRevealer" |
| 56 }, | 24 }, |
| 57 { | 25 { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "ElementsPanel.js", | 81 "ElementsPanel.js", |
| 114 "AnimationsSidebarPane.js" | 82 "AnimationsSidebarPane.js" |
| 115 ], | 83 ], |
| 116 "stylesheets": [ | 84 "stylesheets": [ |
| 117 "breadcrumbs.css", | 85 "breadcrumbs.css", |
| 118 "elementsPanel.css", | 86 "elementsPanel.css", |
| 119 "elementsTreeOutline.css", | 87 "elementsTreeOutline.css", |
| 120 "spectrum.css" | 88 "spectrum.css" |
| 121 ] | 89 ] |
| 122 } | 90 } |
| OLD | NEW |