| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "title": "Word wrap", | 55 "title": "Word wrap", |
| 56 "settingName": "domWordWrap", | 56 "settingName": "domWordWrap", |
| 57 "settingType": "checkbox" | 57 "settingType": "checkbox" |
| 58 }, | 58 }, |
| 59 { | 59 { |
| 60 "type": "ui-setting", | 60 "type": "ui-setting", |
| 61 "section": "Elements", | 61 "section": "Elements", |
| 62 "title": "Show rulers", | 62 "title": "Show rulers", |
| 63 "settingName": "showMetricsRulers", | 63 "settingName": "showMetricsRulers", |
| 64 "settingType": "checkbox" | 64 "settingType": "checkbox" |
| 65 }, |
| 66 { |
| 67 "type": "ui-setting", |
| 68 "section": "Elements", |
| 69 "title": "Highlight DOM updates", |
| 70 "settingName": "highlightDOMUpdates", |
| 71 "settingType": "checkbox" |
| 65 } | 72 } |
| 66 ], | 73 ], |
| 67 "dependencies": [ | 74 "dependencies": [ |
| 68 "components", | 75 "components", |
| 69 "extensions" | 76 "extensions" |
| 70 ], | 77 ], |
| 71 "scripts": [ | 78 "scripts": [ |
| 72 "Spectrum.js", | 79 "Spectrum.js", |
| 73 "ElementsBreadcrumbs.js", | 80 "ElementsBreadcrumbs.js", |
| 74 "ElementsSidebarPane.js", | 81 "ElementsSidebarPane.js", |
| 75 "ElementsTreeOutline.js", | 82 "ElementsTreeOutline.js", |
| 76 "EventListenersSidebarPane.js", | 83 "EventListenersSidebarPane.js", |
| 77 "MetricsSidebarPane.js", | 84 "MetricsSidebarPane.js", |
| 78 "PlatformFontsSidebarPane.js", | 85 "PlatformFontsSidebarPane.js", |
| 79 "PropertiesSidebarPane.js", | 86 "PropertiesSidebarPane.js", |
| 80 "StylesSidebarPane.js", | 87 "StylesSidebarPane.js", |
| 81 "ElementsPanel.js", | 88 "ElementsPanel.js", |
| 82 "AnimationsSidebarPane.js" | 89 "AnimationsSidebarPane.js" |
| 83 ], | 90 ], |
| 84 "stylesheets": [ | 91 "stylesheets": [ |
| 85 "breadcrumbs.css", | 92 "breadcrumbs.css", |
| 86 "elementsPanel.css", | 93 "elementsPanel.css", |
| 87 "elementsTreeOutline.css", | 94 "elementsTreeOutline.css", |
| 88 "spectrum.css" | 95 "spectrum.css" |
| 89 ] | 96 ] |
| 90 } | 97 } |
| OLD | NEW |