OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "@WebInspector.Panel", | 4 "type": "@WebInspector.Panel", |
5 "name": "elements", | 5 "name": "elements", |
6 "title": "Elements", | 6 "title": "Elements", |
7 "order": 0, | 7 "order": 0, |
8 "className": "WebInspector.ElementsPanel" | 8 "className": "WebInspector.ElementsPanel" |
9 }, | 9 }, |
10 { | 10 { |
(...skipping 21 matching lines...) Expand all Loading... |
32 "contextTypes": ["WebInspector.RemoteObject"], | 32 "contextTypes": ["WebInspector.RemoteObject"], |
33 "className": "WebInspector.ElementsPanel.NodeRemoteObjectInspector" | 33 "className": "WebInspector.ElementsPanel.NodeRemoteObjectInspector" |
34 }, | 34 }, |
35 { | 35 { |
36 "type": "ui-setting", | 36 "type": "ui-setting", |
37 "section": "Elements", | 37 "section": "Elements", |
38 "title": "Color format:", | 38 "title": "Color format:", |
39 "settingName": "colorFormat", | 39 "settingName": "colorFormat", |
40 "settingType": "select", | 40 "settingType": "select", |
41 "options": [ | 41 "options": [ |
42 [ "As authored", "original" ], | 42 ["As authored", "original"], |
43 [ "HEX: #DAC0DE", "hex", true ], | 43 ["HEX: #DAC0DE", "hex", true], |
44 [ "RGB: rgb(128, 255, 255)", "rgb", true ], | 44 ["RGB: rgb(128, 255, 255)", "rgb", true], |
45 [ "HSL: hsl(300, 80%, 90%)", "hsl", true ] | 45 ["HSL: hsl(300, 80%, 90%)", "hsl", true] |
46 ] | 46 ] |
47 }, | 47 }, |
48 { | 48 { |
49 "type": "ui-setting", | 49 "type": "ui-setting", |
50 "section": "Elements", | 50 "section": "Elements", |
51 "title": "Show user agent styles", | 51 "title": "Show user agent styles", |
52 "settingName": "showUserAgentStyles", | 52 "settingName": "showUserAgentStyles", |
53 "settingType": "checkbox" | 53 "settingType": "checkbox" |
54 }, | 54 }, |
55 { | 55 { |
(...skipping 11 matching lines...) Expand all Loading... |
67 "settingType": "checkbox" | 67 "settingType": "checkbox" |
68 }, | 68 }, |
69 { | 69 { |
70 "type": "ui-setting", | 70 "type": "ui-setting", |
71 "section": "Elements", | 71 "section": "Elements", |
72 "title": "Show rulers", | 72 "title": "Show rulers", |
73 "settingName": "showMetricsRulers", | 73 "settingName": "showMetricsRulers", |
74 "settingType": "checkbox" | 74 "settingType": "checkbox" |
75 } | 75 } |
76 ], | 76 ], |
77 "scripts": [ "ElementsPanel.js" ] | 77 "scripts": [ |
| 78 "Spectrum.js", |
| 79 "DOMSyntaxHighlighter.js", |
| 80 "ElementsTreeOutline.js", |
| 81 "EventListenersSidebarPane.js", |
| 82 "MetricsSidebarPane.js", |
| 83 "PlatformFontsSidebarPane.js", |
| 84 "PropertiesSidebarPane.js", |
| 85 "StylesSidebarPane.js", |
| 86 "ElementsPanel.js" |
| 87 ] |
78 } | 88 } |
OLD | NEW |