OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). | 3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). |
4 * Copyright (C) 2009 Joseph Pecoraro | 4 * Copyright (C) 2009 Joseph Pecoraro |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * | 9 * |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox Jav
aScript frames on Timeline", true); | 106 Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox Jav
aScript frames on Timeline", true); |
107 Runtime.experiments.register("colorContrastRatio", "Contrast ratio line
in color picker", true); | 107 Runtime.experiments.register("colorContrastRatio", "Contrast ratio line
in color picker", true); |
108 Runtime.experiments.register("cpuThrottling", "CPU throttling", true); | 108 Runtime.experiments.register("cpuThrottling", "CPU throttling", true); |
109 Runtime.experiments.register("deviceFrames", "Device frames", true); | 109 Runtime.experiments.register("deviceFrames", "Device frames", true); |
110 Runtime.experiments.register("emptySourceMapAutoStepping", "Empty source
map auto-stepping"); | 110 Runtime.experiments.register("emptySourceMapAutoStepping", "Empty source
map auto-stepping"); |
111 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve
nts on Timeline overview", true); | 111 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve
nts on Timeline overview", true); |
112 Runtime.experiments.register("layersPanel", "Layers panel"); | 112 Runtime.experiments.register("layersPanel", "Layers panel"); |
113 Runtime.experiments.register("layoutEditor", "Layout editor", true); | 113 Runtime.experiments.register("layoutEditor", "Layout editor", true); |
114 Runtime.experiments.register("inspectTooltip", "Dark inspect element too
ltip"); | 114 Runtime.experiments.register("inspectTooltip", "Dark inspect element too
ltip"); |
115 Runtime.experiments.register("liveSASS", "Live SASS", true); | 115 Runtime.experiments.register("liveSASS", "Live SASS", true); |
116 Runtime.experiments.register("networkRequestsOnTimeline", "Network reque
sts on Timeline", true); | |
117 Runtime.experiments.register("privateScriptInspection", "Private script
inspection"); | 116 Runtime.experiments.register("privateScriptInspection", "Private script
inspection"); |
118 Runtime.experiments.register("reducedIndentation", "Reduced indentation
in Elements DOM tree"); | 117 Runtime.experiments.register("reducedIndentation", "Reduced indentation
in Elements DOM tree"); |
119 Runtime.experiments.register("requestBlocking", "Request blocking", true
); | 118 Runtime.experiments.register("requestBlocking", "Request blocking", true
); |
120 Runtime.experiments.register("resolveVariableNames", "Resolve variable n
ames"); | 119 Runtime.experiments.register("resolveVariableNames", "Resolve variable n
ames"); |
121 Runtime.experiments.register("timelineShowAllEvents", "Show all events o
n Timeline", true); | 120 Runtime.experiments.register("timelineShowAllEvents", "Show all events o
n Timeline", true); |
122 Runtime.experiments.register("timelineLatencyInfo", "Show input latency
events on the Timeline", true); | 121 Runtime.experiments.register("timelineLatencyInfo", "Show input latency
events on the Timeline", true); |
123 Runtime.experiments.register("securityPanel", "Security panel"); | 122 Runtime.experiments.register("securityPanel", "Security panel"); |
124 Runtime.experiments.register("timelineFlowEvents", "Timeline flow events
", true); | 123 Runtime.experiments.register("timelineFlowEvents", "Timeline flow events
", true); |
125 Runtime.experiments.register("timelineInvalidationTracking", "Timeline i
nvalidation tracking", true); | 124 Runtime.experiments.register("timelineInvalidationTracking", "Timeline i
nvalidation tracking", true); |
126 Runtime.experiments.register("timelineRecordingPerspectives", "Timeline
recording perspectives UI"); | 125 Runtime.experiments.register("timelineRecordingPerspectives", "Timeline
recording perspectives UI"); |
(...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1099 * @return {?Element} | 1098 * @return {?Element} |
1100 */ | 1099 */ |
1101 settingElement: function() | 1100 settingElement: function() |
1102 { | 1101 { |
1103 return WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIStri
ng("Show rulers"), WebInspector.moduleSetting("showMetricsRulers")); | 1102 return WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIStri
ng("Show rulers"), WebInspector.moduleSetting("showMetricsRulers")); |
1104 } | 1103 } |
1105 } | 1104 } |
1106 | 1105 |
1107 | 1106 |
1108 new WebInspector.Main(); | 1107 new WebInspector.Main(); |
OLD | NEW |