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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "title": "Word wrap", | 87 "title": "Word wrap", |
88 "settingName": "domWordWrap", | 88 "settingName": "domWordWrap", |
89 "settingType": "checkbox" | 89 "settingType": "checkbox" |
90 }, | 90 }, |
91 { | 91 { |
92 "type": "ui-setting", | 92 "type": "ui-setting", |
93 "section": "Elements", | 93 "section": "Elements", |
94 "title": "Show rulers", | 94 "title": "Show rulers", |
95 "settingName": "showMetricsRulers", | 95 "settingName": "showMetricsRulers", |
96 "settingType": "checkbox" | 96 "settingType": "checkbox" |
| 97 }, |
| 98 { |
| 99 "type": "ui-setting", |
| 100 "section": "Elements", |
| 101 "title": "Highlight DOM updates", |
| 102 "settingName": "highlightDOMUpdates", |
| 103 "settingType": "checkbox" |
97 } | 104 } |
98 ], | 105 ], |
99 "dependencies": [ | 106 "dependencies": [ |
100 "components", | 107 "components", |
101 "extensions" | 108 "extensions" |
102 ], | 109 ], |
103 "scripts": [ | 110 "scripts": [ |
104 "Spectrum.js", | 111 "Spectrum.js", |
105 "ElementsBreadcrumbs.js", | 112 "ElementsBreadcrumbs.js", |
106 "ElementsSidebarPane.js", | 113 "ElementsSidebarPane.js", |
107 "ElementsTreeOutline.js", | 114 "ElementsTreeOutline.js", |
108 "EventListenersSidebarPane.js", | 115 "EventListenersSidebarPane.js", |
109 "MetricsSidebarPane.js", | 116 "MetricsSidebarPane.js", |
110 "PlatformFontsSidebarPane.js", | 117 "PlatformFontsSidebarPane.js", |
111 "PropertiesSidebarPane.js", | 118 "PropertiesSidebarPane.js", |
112 "StylesSidebarPane.js", | 119 "StylesSidebarPane.js", |
113 "ElementsPanel.js", | 120 "ElementsPanel.js", |
114 "AnimationsSidebarPane.js" | 121 "AnimationsSidebarPane.js" |
115 ], | 122 ], |
116 "stylesheets": [ | 123 "stylesheets": [ |
117 "breadcrumbs.css", | 124 "breadcrumbs.css", |
118 "elementsPanel.css", | 125 "elementsPanel.css", |
119 "elementsTreeOutline.css", | 126 "elementsTreeOutline.css", |
120 "spectrum.css" | 127 "spectrum.css" |
121 ] | 128 ] |
122 } | 129 } |
OLD | NEW |